]> granicus.if.org Git - python/commitdiff
Somebody must not have run the test before checking this in -- it had
authorTim Peters <tim.peters@gmail.com>
Fri, 7 Mar 2003 15:36:41 +0000 (15:36 +0000)
committerTim Peters <tim.peters@gmail.com>
Fri, 7 Mar 2003 15:36:41 +0000 (15:36 +0000)
a fatal tab/space inconsistency under -tt.

Lib/tarfile.py

index 0f088a3718cadadf92b82236bb605788fb58c28d..152b23c252c9f82b48581aa7b076e6c1f835fd84 100644 (file)
@@ -1530,7 +1530,7 @@ class TarFile(object):
         """Set modification time of targetpath according to tarinfo.
         """
         if not hasattr(os, 'utime'):
-           return
+            return
         if sys.platform == "win32" and tarinfo.isdir():
             # According to msdn.microsoft.com, it is an error (EACCES)
             # to use utime() on directories.