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>2017-11-10 01:27:52 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2017-11-10 01:27:52 +0300
commitace76beb8608ccc0b4d41bda921421af32f11f5f (patch)
tree73035742cd1d1c9bb22b0ce82969d5c97e0ced21
parent9d919ccf81bfd4532d06a2e1943d450cc2e050f7 (diff)
Add the arch to the warning that files are being ignored
-rw-r--r--calm/uploads.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/calm/uploads.py b/calm/uploads.py
index dc95d48..679fb9a 100644
--- a/calm/uploads.py
+++ b/calm/uploads.py
@@ -259,7 +259,7 @@ def scan(m, all_packages, arch, args):
# since we warned about files being ignored, warn again
if ignored > 0 and m.reminders_issued:
if (time.time() > (m.reminder_time + REMINDER_INTERVAL)):
- logging.warning("ignored %d files as there is no !ready" % ignored)
+ logging.warning("ignored %d files in %s as there is no !ready" % (ignored, arch))
return ScanResult(error, packages, move, vault, remove, remove_success)