From 82df53e9324450483efce4582af62ae1c2232d2d Mon Sep 17 00:00:00 2001 From: Brian Curtin Date: Fri, 24 Sep 2010 21:04:05 +0000 Subject: [PATCH] Fix a line that got hacked up by r82659. --- Lib/tarfile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/tarfile.py b/Lib/tarfile.py index 40109cd4a1..8c330c680a 100644 --- a/Lib/tarfile.py +++ b/Lib/tarfile.py @@ -2306,7 +2306,8 @@ class TarFile(object): 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), -- 2.49.0