Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2016-04-14 19:53:39 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2016-04-18 14:37:16 +0300
commit8e947925c1b2597d11e1d000e01b57a9a8981f79 (patch)
tree26fe485eba7094169feae8894c356853b5e173b6
parentdbcdbd59109bce95ed67b19b11ee2b903ed0cad6 (diff)
Downgrade warning about replacing an existing setup.hint
Saying 'replacing' confuses people into thinking that we are moving the file now, which isn't the case. We'll warn about any differences in setup.hint before we do that move, which is more informative, anyhow
-rw-r--r--uploads.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/uploads.py b/uploads.py
index 6909d76..f8eb161 100644
--- a/uploads.py
+++ b/uploads.py
@@ -164,7 +164,7 @@ def scan(m, all_packages, args):
if filecmp.cmp(dest, fn, shallow=False):
logging.debug("identical %s is already in release area" % fn)
else:
- logging.warning("replacing, different %s is already in release area" % fn)
+ logging.debug("different %s is already in release area" % fn)
# we always consider setup.hint, as we can't have a valid package without it
move[relpath].append(f)
else: