Skip to content

Commit

Permalink
Merge pull request #60 from ccnmtl/pyup-update-pyflakes-1.6.0-to-2.0.0
Browse files Browse the repository at this point in the history
Update pyflakes to 2.0.0
  • Loading branch information
sdreher committed May 22, 2018
2 parents 98d50fc + b9d8687 commit 8e4c2b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions djangowind/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ class BaseAuthBackend(object):
supports_inactive_user = True

def authenticate(self, ticket=None):
raise NotImplemented
raise NotImplementedError

def get_user(self, user_id):
try:
Expand All @@ -226,7 +226,7 @@ def load_handler(self, path):
except ImportError as e:
raise ImproperlyConfigured(
'Error importing wind handler %s: "%s"' % (module, e))
except ValueError as e:
except ValueError:
raise ImproperlyConfigured('Error importing wind handler.')
try:
cls = getattr(mod, attr)
Expand Down
2 changes: 1 addition & 1 deletion test_reqs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ coverage==4.5.1
mock==2.0.0
flake8==3.5.0
pep8==1.7.1
pyflakes==1.6.0
pyflakes==2.0.0
statsd==3.2.2
django-statsd-mozilla==0.4.0

0 comments on commit 8e4c2b4

Please sign in to comment.