Skip to content

Commit

Permalink
fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
yasyf committed Sep 17, 2014
1 parent 70a0415 commit cdf211d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mongo.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_raw_email(object_id):
raw_email = raw_data.find_one({'_id': ObjectId(object_id)})
if not raw_email:
raise NoSuchEmailException
if processed_data.find_one({'email_id':raw_email['id']}):
if processed_data.find_one({'email_id': raw_email['id']}):
raise DuplicateException
del raw_email['_id']
try:
Expand Down

0 comments on commit cdf211d

Please sign in to comment.