Skip to content

Commit

Permalink
Remove unused imports and variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdarnell committed Jun 26, 2011
1 parent 612821f commit 56b0e36
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion tornado/httpclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
import calendar
import email.utils
import httplib
import os
import time
import weakref

Expand Down
2 changes: 1 addition & 1 deletion tornado/websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def async_callback(self, callback, *args, **kwargs):
def wrapper(*args, **kwargs):
try:
return callback(*args, **kwargs)
except Exception, e:
except Exception:
logging.error("Uncaught exception in %s",
self.request.path, exc_info=True)
self._abort()
Expand Down
1 change: 0 additions & 1 deletion website/website.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

import os
import os.path
import time
import tornado.web
import tornado.wsgi
import wsgiref.handlers
Expand Down

0 comments on commit 56b0e36

Please sign in to comment.