Cast to int properly

develop
Sven Slootweg 11 years ago
parent 57c015f161
commit 570d8f3b85

@ -13,7 +13,7 @@ while True:
if port.strip() == "": if port.strip() == "":
break break
service_name = raw_input("Service name for port %s: " % port) service_name = raw_input("Service name for port %s: " % port)
ports[port] = service_name ports[int(port)] = service_name
print "The same thing, except now for processes to check. Just hit enter without entering any information when you're done; the same goes for the argument list. As a wildcard, you can use *" print "The same thing, except now for processes to check. Just hit enter without entering any information when you're done; the same goes for the argument list. As a wildcard, you can use *"

Loading…
Cancel
Save