diff options
| author | Simon Charette <charette.s@gmail.com> | 2014-01-12 13:40:37 -0500 |
|---|---|---|
| committer | Simon Charette <charette.s@gmail.com> | 2014-01-12 13:40:37 -0500 |
| commit | c726598c3da5320df88a10fc407f8df6874589b1 (patch) | |
| tree | 85b250ab6d7bec98bcea2bf424ef1ddceaa6c9e7 /django/dispatch | |
| parent | 56ab5f52c717ad9f54f94b09b6c61568f612ba6b (diff) | |
Fixed flake8 issues.
Diffstat (limited to 'django/dispatch')
| -rw-r--r-- | django/dispatch/dispatcher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/dispatch/dispatcher.py b/django/dispatch/dispatcher.py index 7302f6428e..738d8969de 100644 --- a/django/dispatch/dispatcher.py +++ b/django/dispatch/dispatcher.py @@ -4,7 +4,7 @@ import weakref from django.utils.six.moves import xrange -if sys.version_info < (3,4): +if sys.version_info < (3, 4): from .weakref_backports import WeakMethod else: from weakref import WeakMethod |
