Skip to content

Commit

Permalink
bpo-36690: Fix typo in Tools/demo/rpython.py (GH-12903)
Browse files Browse the repository at this point in the history
  • Loading branch information
BriFuture authored and berkerpeksag committed Apr 22, 2019
1 parent ab86521 commit d59b662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/demo/rpython.py
Expand Up @@ -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:
Expand Down

0 comments on commit d59b662

Please sign in to comment.