Forgot to map to strings.

This commit is contained in:
Jeremy Fincher 2003-09-24 07:47:00 +00:00
parent 06be2a6474
commit 67d0e2fedc
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ if __name__ == '__main__':
port = 0
else:
port = 6667
server = ':'.join((serverString, port))
server = ':'.join(map(str, [serverString, port]))
# nick
if nick: