Mercurial > dive4elements > river
changeset 2627:daf413420cf7
check-i18n-properties.py: Checked in unsaved version.
flys-artifacts/trunk@4219 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Wed, 11 Apr 2012 15:37:44 +0000 |
parents | 50f6f0463153 |
children | d00416788b54 |
files | flys-artifacts/ChangeLog flys-artifacts/contrib/check-i18n-properties.py |
diffstat | 2 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <sascha.teichmann@intevation.de> + + * contrib/check-i18n-properties.py: Checked in unsaved version. :-/ + 2012-04-11 Raimund Renkert <raimund.renkert@intevation.de> Issue 656.
--- 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