summaryrefslogtreecommitdiff
path: root/django/utils/archive.py
diff options
context:
space:
mode:
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 3e5d22ae1b..90b72593a9 100644
--- a/django/utils/archive.py
+++ b/django/utils/archive.py
@@ -141,7 +141,7 @@ class TarArchive(BaseArchive):
self._archive.list(*args, **kwargs)
def extract(self, to_path):
- # note: python<=2.5 doesnt seem to know about pax headers, filter them
+ # note: python<=2.5 doesn't seem to know about pax headers, filter them
members = [member for member in self._archive.getmembers()
if member.name != 'pax_global_header']
leading = self.has_leading_dir(members)