In the reported messages show if they are fuzzy or not.

svn: r7612
This commit is contained in:
Kees Bakker 2006-11-11 08:24:47 +00:00
parent 29760f6141
commit fb5a2fc9ae

View File

@ -60,7 +60,7 @@ class Msgid:
def diag( self ): def diag( self ):
if 1: if 1:
print print
print "msg nr: %d, lineno: %d" % ( self.nr, self.lineno ) print "msg nr: %d, lineno: %d%s" % ( self.nr, self.lineno, self.is_fuzzy and " (fuzzy)" or "" )
sys.stdout.write( ''.join( self._msgid ) ) sys.stdout.write( ''.join( self._msgid ) )
sys.stdout.write( ''.join( self._msgstr ) ) sys.stdout.write( ''.join( self._msgstr ) )
else: else: