Fixed a bug in the test jig.

This commit is contained in:
Eric S. Raymond 2001-02-09 07:40:17 +00:00
parent 6b8c52835c
commit 38151ed6b8
1 changed files with 1 additions and 1 deletions

View File

@ -523,7 +523,7 @@ if __name__ == '__main__':
return sys.stdin.readline().strip()
fromaddr = prompt("From")
toaddrs = ','.split(prompt("To"))
toaddrs = prompt("To").split(',')
print "Enter message, end with ^D:"
msg = ''
while 1: