Skip to content

Commit

Permalink
Remove stray/unwanted printf debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsmedberg committed Aug 21, 2012
1 parent 773137d commit 24f7d74
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions socorro/collector/wsgi_collector.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,11 @@ def POST(self, *args):
the_form = web.input()
dump = the_form[self.dump_field]

import sys

# Remove other submitted files from the input form, which are
# an indication of a multi-dump hang submission we aren't yet
# prepared to handle.
for (key, value) in web.webapi.rawinput().iteritems():
if hasattr(value, 'file') and hasattr(value, 'value'):
print >>sys.stderr, "Removing %s from form" % key
del the_form[key]

raw_crash = self.make_raw_crash(the_form)
Expand Down

0 comments on commit 24f7d74

Please sign in to comment.