diff options
| author | Loic Bistuer <loic.bistuer@sixmedia.com> | 2013-12-13 03:23:24 +0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-12-14 11:59:15 -0500 |
| commit | 668571386926ff5453d0e11f59b0a89c0dc1dfa2 (patch) | |
| tree | ab2cf4f5c32d966452ef01eee93c09642f769b6a /django/dispatch | |
| parent | d599b590ebe6e2d3a60cf033de4d81c6b963bb04 (diff) | |
Fixed E127 pep8 warnings.
Diffstat (limited to 'django/dispatch')
| -rw-r--r-- | django/dispatch/saferef.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/dispatch/saferef.py b/django/dispatch/saferef.py index 8826c476f1..d040ecdbde 100644 --- a/django/dispatch/saferef.py +++ b/django/dispatch/saferef.py @@ -221,7 +221,7 @@ class BoundNonDescriptorMethodWeakref(BoundMethodWeakref): which will be passed a pointer to this object. """ assert getattr(target.__self__, target.__name__) == target, \ - ("method %s isn't available as the attribute %s of %s" % + ("method %s isn't available as the attribute %s of %s" % (target, target.__name__, target.__self__)) super(BoundNonDescriptorMethodWeakref, self).__init__(target, onDelete) |
