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>2018-02-01 01:49:30 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2018-02-01 01:49:30 +0300
commit0d69b4204f2c690b2aac84a91d3f8bfcaeaf7e5d (patch)
tree172d5340b9c784b5e8abe7238ae366394a255b2a
parent76a45dfb9c281cd7e8320bd80e557f54d3dad2b2 (diff)
Clarify vaulting message
Packages are removed due to expiry settings, so "no longer accessible by installer" is no longer true.
-rwxr-xr-xcalm/calm.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/calm/calm.py b/calm/calm.py
index a1d6ca0..fa89a0a 100755
--- a/calm/calm.py
+++ b/calm/calm.py
@@ -114,7 +114,7 @@ def process_relarea(args):
stale_to_vault = remove_stale_packages(args, packages)
if stale_to_vault:
for arch in common_constants.ARCHES + ['noarch', 'src']:
- logging.info("vaulting %d old package(s) for arch %s, which are no longer accessible by installer" % (len(stale_to_vault[arch]), arch))
+ logging.info("vaulting %d old package(s) for arch %s" % (len(stale_to_vault[arch]), arch))
uploads.move_to_vault(args, stale_to_vault[arch])
else:
logging.error("error while evaluating stale packages")
@@ -240,7 +240,7 @@ def process_uploads(args, state):
if args.stale:
for arch in common_constants.ARCHES + ['noarch', 'src']:
if stale_to_vault[arch]:
- logging.info("vaulting %d old package(s) for arch %s, which are no longer accessible by installer" % (len(stale_to_vault[arch]), arch))
+ logging.info("vaulting %d old package(s) for arch %s" % (len(stale_to_vault[arch]), arch))
uploads.move_to_vault(args, stale_to_vault[arch])
# for each arch