From b46a7fc4b1dff071b99f1961cc89646f8c124438 Mon Sep 17 00:00:00 2001 From: Leigh Morresi <275001+dgtlmoon@users.noreply.github.com> Date: Sun, 21 Feb 2021 13:40:48 +0100 Subject: [PATCH] Port should be an integer --- backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend.py b/backend.py index 83422615..4e6058d2 100644 --- a/backend.py +++ b/backend.py @@ -33,7 +33,7 @@ def main(argv): ssl_mode = True if opt == '-p': - port = arg + port = int(arg) if opt == '-d': datastore_path = arg