Whitespace normalization.

This commit is contained in:
Tim Peters 2003-01-29 03:49:43 +00:00
parent c0c12b5707
commit 2c60f7a136
11 changed files with 98 additions and 98 deletions

View file

@ -1249,7 +1249,7 @@ class TarFile(object):
if self.posix:
prefix = tarinfo.name[:LENGTH_PREFIX + 1]
while prefix and prefix[-1] != "/":
prefix = prefix[:-1]
prefix = prefix[:-1]
name = tarinfo.name[len(prefix):]
prefix = prefix[:-1]