Remove unused variable

This commit is contained in:
Andrew Godwin 2016-07-06 11:37:38 -07:00
parent 28c2a535d1
commit 9310094970

View File

@ -145,7 +145,7 @@ class WebRequest(http.Request):
except self.factory.channel_layer.ChannelFull:
# Channel is too full; reject request with 503
self.basic_error(503, b"Service Unavailable", "Request queue full.")
except Exception as e:
except Exception:
logger.error(traceback.format_exc())
self.basic_error(500, b"Internal Server Error", "HTTP processing error")