# HG changeset patch # User Sascha L. Teichmann # Date 1334158664 0 # Node ID daf413420cf71ceba12b8d847eadb283c6c2b426 # Parent 50f6f0463153e68a125fecffedaaf2664c33a356 check-i18n-properties.py: Checked in unsaved version. flys-artifacts/trunk@4219 c6561f87-3c4e-4783-a992-168aeb5c3f6f diff -r 50f6f0463153 -r daf413420cf7 flys-artifacts/ChangeLog --- a/flys-artifacts/ChangeLog Wed Apr 11 13:27:36 2012 +0000 +++ b/flys-artifacts/ChangeLog Wed Apr 11 15:37:44 2012 +0000 @@ -1,3 +1,7 @@ +2012-04-11 Sascha L. Teichmann + + * contrib/check-i18n-properties.py: Checked in unsaved version. :-/ + 2012-04-11 Raimund Renkert Issue 656. diff -r 50f6f0463153 -r daf413420cf7 flys-artifacts/contrib/check-i18n-properties.py --- a/flys-artifacts/contrib/check-i18n-properties.py Wed Apr 11 13:27:36 2012 +0000 +++ b/flys-artifacts/contrib/check-i18n-properties.py Wed Apr 11 15:37:44 2012 +0000 @@ -14,9 +14,9 @@ m = SPLIT_RE.match(line) if not m: continue k = m.group(1).strip() - v = m.group(2).strip + v = m.group(2).strip() if k in props: - print >> sys.stderr, "'%s' more than once in '%s'." % ( + print >> sys.stderr, "'%s' found more than once in '%s'." % ( k, filename) else: props[k] = v