Skip to content
This repository has been archived by the owner on Oct 28, 2020. It is now read-only.

Commit

Permalink
Merge pull request #1109 from akatsoulas/fix-flake8
Browse files Browse the repository at this point in the history
Fix flake8 errors.
  • Loading branch information
akatsoulas committed Jan 13, 2016
2 parents b3520fc + fcb7715 commit d297716
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions remo/remozilla/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ def fetch_bugs(components=COMPONENTS, days=None):
automated_voting_trigger += 1
if flag['status'] == '?' and flag['name'] == 'remo-review':
bug.pending_mentor_validation = True
if (flag['status'] == '?' and flag['name'] == 'needinfo'
and 'requestee' in flag):
if (flag['status'] == '?' and flag['name'] == 'needinfo' and
'requestee' in flag):
email = flag['requestee']
user = get_object_or_none(User, email=email)
if user:
Expand Down

0 comments on commit d297716

Please sign in to comment.