Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab86521 commit d59b662Copy full SHA for d59b662
1 file changed
Tools/demo/rpython.py
@@ -19,7 +19,7 @@ def main():
19
port = PORT
20
i = host.find(':')
21
if i >= 0:
22
- port = int(port[i+1:])
+ port = int(host[i+1:])
23
host = host[:i]
24
command = ' '.join(sys.argv[2:])
25
with socket(AF_INET, SOCK_STREAM) as s:
0 commit comments