remove unused variable, whitespace

This commit is contained in:
Miguel Jacq 2018-10-01 19:15:58 +10:00
parent 3f32db2cca
commit d104af11dc
No known key found for this signature in database
GPG key ID: EEA4341C6D97A0B6

View file

@ -19,7 +19,6 @@ class ReceiveModeWeb(object):
self.web = web self.web = web
self.can_upload = True self.can_upload = True
self.can_stop_share_now = False
self.upload_count = 0 self.upload_count = 0
self.uploads_in_progress = [] self.uploads_in_progress = []
@ -40,7 +39,6 @@ class ReceiveModeWeb(object):
r = make_response(render_template( r = make_response(render_template(
'receive.html', 'receive.html',
upload_action=upload_action)) upload_action=upload_action))
return self.web.add_security_headers(r) return self.web.add_security_headers(r)
@self.web.app.route("/<slug_candidate>") @self.web.app.route("/<slug_candidate>")