diff options
author | Mark Sapiro <msapiro@value.net> | 2007-12-06 20:01:32 -0800 |
---|---|---|
committer | Mark Sapiro <msapiro@value.net> | 2007-12-06 20:01:32 -0800 |
commit | e3e4585783b5ca566785596235c15a4bcb33f46d (patch) | |
tree | 5c8bb9f67af88e0fa561a1904a28ec0a0f18ef96 /bin/transcheck | |
parent | b62e2786c76c5bcf2f7431c8bcf6c020a2771395 (diff) | |
download | mailman2-e3e4585783b5ca566785596235c15a4bcb33f46d.tar.gz mailman2-e3e4585783b5ca566785596235c15a4bcb33f46d.tar.xz mailman2-e3e4585783b5ca566785596235c15a4bcb33f46d.zip |
Corrected a long standing, mostly inconsequential error in bin/transcheck.
Diffstat (limited to 'bin/transcheck')
-rwxr-xr-x | bin/transcheck | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/transcheck b/bin/transcheck index 73910e77..7f4d0b3a 100755 --- a/bin/transcheck +++ b/bin/transcheck @@ -1,6 +1,7 @@ #! @PYTHON@ # # transcheck - (c) 2002 by Simone Piunno <pioppo@ferrara.linux.it> +# Copyright (C) 2007 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the version 2.0 of the GNU General Public License as @@ -262,9 +263,9 @@ class POParser: # a quoted char... c = self.f.read(1) if self.esc.has_key(c): - self.msgid += self.esc[c] + self.msgstr += self.esc[c] else: - self.msgid += c + self.msgstr += c continue if c == "\"": # end of string |