Skip to content

Commit

Permalink
bug 822432 - missing paren
Browse files Browse the repository at this point in the history
  • Loading branch information
rhelmer committed Dec 19, 2012
1 parent 65eec83 commit 22c66b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion socorro/cron/fixBrokenDumps.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def fix(configContext, logger, query, fixer):
logger.debug('fixer: %s' % fixer)
with open(fname, 'rb') as fixed_dump_file:
fixed_dump = fixed_dump_file.read()
hbc.put_fixed_dump(ooid, fixed_dump, add_to_unprocessed_queue = True, submitted_timestamp = date_to_string(utc_now())
hbc.put_fixed_dump(ooid, fixed_dump, add_to_unprocessed_queue = True, submitted_timestamp = date_to_string(utc_now()))
logger.debug('put fixed dump file into hbase: %s' % fname)
os.unlink(fname)
logger.debug('removed dump file: %s' % fname)
Expand Down

0 comments on commit 22c66b7

Please sign in to comment.