Commit d59b662e authored by 周家未's avatar 周家未 Committed by Berker Peksag

bpo-36690: Fix typo in Tools/demo/rpython.py (GH-12903)

parent ab86521a
......@@ -19,7 +19,7 @@ def main():
port = PORT
i = host.find(':')
if i >= 0:
port = int(port[i+1:])
port = int(host[i+1:])
host = host[:i]
command = ' '.join(sys.argv[2:])
with socket(AF_INET, SOCK_STREAM) as s:
......
Markdown is supported
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