[Python-checkins] r84999 - python/branches/py3k/Lib/tarfile.py

brian.curtin python-checkins at python.org
Fri Sep 24 23:04:05 CEST 2010


Author: brian.curtin
Date: Fri Sep 24 23:04:05 2010
New Revision: 84999

Log:
Fix a line that got hacked up by r82659.


Modified:
   python/branches/py3k/Lib/tarfile.py

Modified: python/branches/py3k/Lib/tarfile.py
==============================================================================
--- python/branches/py3k/Lib/tarfile.py	(original)
+++ python/branches/py3k/Lib/tarfile.py	Fri Sep 24 23:04:05 2010
@@ -2306,7 +2306,8 @@
                 if os.path.exists(tarinfo._link_target):
                     os.link(tarinfo._link_target, targetpath)
                 else:
-                    self._extract_mem
+                    self._extract_member(self._find_link_target(tarinfo),
+                                         targetpath)
         except symlink_exception:
             if tarinfo.issym():
                 linkpath = os.path.join(os.path.dirname(tarinfo.name),


More information about the Python-checkins mailing list