diff options
author | Éric Araujo <merwok@netwok.org> | 2011-08-19 14:22:52 +0200 |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-08-19 14:22:52 +0200 |
commit | 85ce2477262bd13d6c72050103204c6c25468ac5 (patch) | |
tree | 4e26e5818076fe72ae8e2a42eb554ce95bf01de4 /Lib/shutil.py | |
parent | 444be161366733aebf6a1ec04c76e62e227f9cba (diff) | |
parent | d1ca4f9dc6f28bcda09576e6148200b82c3cedae (diff) | |
download | cpython-git-85ce2477262bd13d6c72050103204c6c25468ac5.tar.gz |
Branch merge
Diffstat (limited to 'Lib/shutil.py')
-rw-r--r-- | Lib/shutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py index 8718884530..9ba602f1ec 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -399,7 +399,7 @@ def _make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, if not os.path.exists(archive_dir): if logger is not None: - logger.info("creating %s" % archive_dir) + logger.info("creating %s", archive_dir) if not dry_run: os.makedirs(archive_dir) |