summaryrefslogtreecommitdiffstats
path: root/Lib/tarfile.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/tarfile.py')
-rw-r--r--Lib/tarfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tarfile.py b/Lib/tarfile.py
index 4a57e3a..366a244 100644
--- a/Lib/tarfile.py
+++ b/Lib/tarfile.py
@@ -1374,7 +1374,7 @@ class TarFile(object):
# stream of tar blocks.
raise StreamError, "cannot extract (sym)link as file object"
else:
- # A (sym)link's file object is it's target's file object.
+ # A (sym)link's file object is its target's file object.
return self.extractfile(self._getmember(tarinfo.linkname,
tarinfo))
else: