summaryrefslogtreecommitdiff
path: root/django/utils/archive.py
diff options
context:
space:
mode:
authorLoic Bistuer <loic.bistuer@sixmedia.com>2013-12-13 03:23:24 +0700
committerTim Graham <timograham@gmail.com>2013-12-14 11:59:15 -0500
commit668571386926ff5453d0e11f59b0a89c0dc1dfa2 (patch)
treeab2cf4f5c32d966452ef01eee93c09642f769b6a /django/utils/archive.py
parentd599b590ebe6e2d3a60cf033de4d81c6b963bb04 (diff)
Fixed E127 pep8 warnings.
Diffstat (limited to 'django/utils/archive.py')
-rw-r--r--django/utils/archive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/archive.py b/django/utils/archive.py
index 0a95fa84a6..3e5d22ae1b 100644
--- a/django/utils/archive.py
+++ b/django/utils/archive.py
@@ -160,7 +160,7 @@ class TarArchive(BaseArchive):
# Some corrupt tar files seem to produce this
# (specifically bad symlinks)
print("In the tar file %s the member %s is invalid: %s" %
- (name, member.name, exc))
+ (name, member.name, exc))
else:
dirname = os.path.dirname(filename)
if dirname and not os.path.exists(dirname):