From e3e4585783b5ca566785596235c15a4bcb33f46d Mon Sep 17 00:00:00 2001 From: Mark Sapiro Date: Thu, 6 Dec 2007 20:01:32 -0800 Subject: Corrected a long standing, mostly inconsequential error in bin/transcheck. --- bin/transcheck | 5 +++-- 1 file 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 +# 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 -- cgit v1.2.3