aboutsummaryrefslogtreecommitdiffstats
path: root/distribute_setup.py
diff options
context:
space:
mode:
authorStefan H. Holek <stefan@epy.co.at>2012-10-08 22:21:32 +0200
committerStefan H. Holek <stefan@epy.co.at>2012-10-08 22:21:32 +0200
commit0d407a3924d53323f81935124117c62d116b2068 (patch)
tree160697de3febcfa3a94fdce8699a6b12662d5799 /distribute_setup.py
parent7a54a88a7727399ea369010a78637ce6db9bf725 (diff)
downloadexternal_python_setuptools-0d407a3924d53323f81935124117c62d116b2068.tar.gz
external_python_setuptools-0d407a3924d53323f81935124117c62d116b2068.tar.bz2
external_python_setuptools-0d407a3924d53323f81935124117c62d116b2068.zip
Fix a few messages in distribute_setup.py.
--HG-- branch : distribute extra : rebase_source : ce0d4548e026262b6e4cf55c46dc5f209dbadd44
Diffstat (limited to 'distribute_setup.py')
-rw-r--r--distribute_setup.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/distribute_setup.py b/distribute_setup.py
index e367fdd1..a52d5c16 100644
--- a/distribute_setup.py
+++ b/distribute_setup.py
@@ -257,7 +257,7 @@ def _same_content(path, content):
def _rename_path(path):
new_name = path + '.OLD.%s' % time.time()
- log.warn('Renaming %s into %s', path, new_name)
+ log.warn('Renaming %s to %s', path, new_name)
os.rename(path, new_name)
return new_name
@@ -275,7 +275,7 @@ def _remove_flat_installation(placeholder):
log.warn('Could not locate setuptools*.egg-info')
return
- log.warn('Removing elements out of the way...')
+ log.warn('Moving elements out of the way...')
pkg_info = os.path.join(placeholder, file)
if os.path.isdir(pkg_info):
patched = _patch_egg_dir(pkg_info)
@@ -435,7 +435,7 @@ def _fake_setuptools():
res = _patch_egg_dir(setuptools_location)
if not res:
return
- log.warn('Patched done.')
+ log.warn('Patching complete.')
_relaunch()