summaryrefslogtreecommitdiff
path: root/ybd/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'ybd/utils.py')
-rw-r--r--ybd/utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ybd/utils.py b/ybd/utils.py
index b9fd653..67b9e5d 100644
--- a/ybd/utils.py
+++ b/ybd/utils.py
@@ -37,10 +37,10 @@ def set_mtime_recursively(root, set_time=default_magic_timestamp):
'''
- for dirname, subdirs, basenames in os.walk(root.encode("utf-8"),
+ for dirname, subdirs, filenames in os.walk(root.encode("utf-8"),
topdown=False):
- for basename in basenames:
- pathname = os.path.join(dirname, basename)
+ for filename in filenames:
+ pathname = os.path.join(dirname, filename)
# Python's os.utime only ever modifies the timestamp
# of the target, it is not acceptable to set the timestamp