summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2019-01-06 15:48:03 +0100
committeremkael <emkael@tlen.pl>2019-01-06 15:48:03 +0100
commitdedf796475b6e1be14ada71babaa2b35cf37bd5d (patch)
tree44dc6956fde18334e681179b2152f7a2e2ff3e0c
parentfb59760d5169818774d51dc0a6a8e66e5cd2331f (diff)
Verbose missing logoh string warning
-rw-r--r--ausbutler/tour_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ausbutler/tour_config.py b/ausbutler/tour_config.py
index 8969d00..2985fcc 100644
--- a/ausbutler/tour_config.py
+++ b/ausbutler/tour_config.py
@@ -29,7 +29,7 @@ class Translations(object):
Translations.detect_language()]
elif missing_logoh_key:
if key not in Translations.warned_missing_keys:
- print 'WARNING: translation key "%s" not found in logoh table!' % (key)
+ print 'WARNING: translation key "%s (%d)" not found in logoh table!' % (key, Translations.translation_mapping[key])
Translations.warned_missing_keys.append(key)
return '{{%s}}' % (key)