Skip to content

Commit

Permalink
Fix test networking exception handling (must be an old bug!)
Browse files Browse the repository at this point in the history
  • Loading branch information
bitprophet committed Sep 26, 2012
1 parent c0b9719 commit d15f030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Python26SocketServer.py
Expand Up @@ -329,7 +329,7 @@ def handle_error(self, request, client_address):
"""
print('-' * 40)
print('Exception happened during processing of request from %s' % client_address)
print('Exception happened during processing of request from %s' % (client_address,))
import traceback
traceback.print_exc() # XXX But this goes to stderr!
print('-' * 40)
Expand Down

0 comments on commit d15f030

Please sign in to comment.