diff options
Diffstat (limited to 'ausbutler/tour_config.py')
-rw-r--r-- | ausbutler/tour_config.py | 2 |
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) |