mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Merged revisions 69332 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r69332 | tarek.ziade | 2009-02-06 01:49:45 +0100 (Fri, 06 Feb 2009) | 1 line using >= so setting verbose to 2 will work as well ........
This commit is contained in:
parent
a045937b45
commit
35e6fd5de9
2 changed files with 6 additions and 6 deletions
|
@ -62,7 +62,7 @@ def mkpath (name, mode=0o777, verbose=1, dry_run=0):
|
|||
if _path_created.get(abs_head):
|
||||
continue
|
||||
|
||||
if verbose == 1:
|
||||
if verbose >= 1:
|
||||
log.info("creating %s", head)
|
||||
|
||||
if not dry_run:
|
||||
|
@ -153,7 +153,7 @@ def copy_tree (src, dst,
|
|||
|
||||
if preserve_symlinks and os.path.islink(src_name):
|
||||
link_dest = os.readlink(src_name)
|
||||
if verbose == 1:
|
||||
if verbose >= 1:
|
||||
log.info("linking %s -> %s", dst_name, link_dest)
|
||||
if not dry_run:
|
||||
os.symlink(link_dest, dst_name)
|
||||
|
@ -190,7 +190,7 @@ def remove_tree (directory, verbose=1, dry_run=0):
|
|||
from distutils.util import grok_environment_error
|
||||
global _path_created
|
||||
|
||||
if verbose == 1:
|
||||
if verbose >= 1:
|
||||
log.info("removing '%s' (and everything under it)", directory)
|
||||
if dry_run:
|
||||
return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue