From ab78cce76359d4c6647f0c1547ab19e2b9a7c8a2 Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Fri, 25 Jan 2019 18:14:19 +0100 Subject: [PATCH] Fix type error : --- scripts/logio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/logio.py b/scripts/logio.py index 58c711b..5fe9fbc 100755 --- a/scripts/logio.py +++ b/scripts/logio.py @@ -62,7 +62,7 @@ def main(): ligier_ip = args['-l'] ligier_port = int(args['-p']) logio_ip = args['-x'] - logio_port = args['-q'] + logio_port = int(args['-q']) pipe = Pipeline() pipe.attach( -- GitLab