mirror of
https://github.com/python/cpython.git
synced 2024-11-26 03:14:27 +08:00
Only return a warning message about not all files being unpacked if there
were indeed files that weren't unpacked.
This commit is contained in:
parent
8c46ce9add
commit
6432f78215
@ -131,7 +131,8 @@ class PimpTarUnpacker(PimpUnpacker):
|
||||
tf.extract(member, self._dir)
|
||||
if skip:
|
||||
names = [member.name for member in skip if member.name[-1] != '/']
|
||||
return "Not all files were unpacked: %s" % " ".join(names)
|
||||
if names:
|
||||
return "Not all files were unpacked: %s" % " ".join(names)
|
||||
|
||||
ARCHIVE_FORMATS = [
|
||||
(".tar.Z", PimpTarUnpacker, None),
|
||||
|
Loading…
Reference in New Issue
Block a user