Skip to content
Snippets Groups Projects
Commit 11e9456b authored by ipa-fxm's avatar ipa-fxm
Browse files

type conversion

parent 1aaa2b68
No related merge requests found
...@@ -673,7 +673,7 @@ def main(): ...@@ -673,7 +673,7 @@ def main():
reverse_port = REVERSE_PORT reverse_port = REVERSE_PORT
elif len(args) == 2: elif len(args) == 2:
robot_hostname = args[0] robot_hostname = args[0]
reverse_port = args[1] reverse_port = int(args[1])
else: else:
parser.error("Wrong number of parameters") parser.error("Wrong number of parameters")
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment