Fixed another error in string formatting using {}.

svn: r14610
This commit is contained in:
Peter Landgren 2010-03-04 13:38:30 +00:00
parent 5647b44801
commit c134937e9d

View File

@ -330,8 +330,8 @@ class CSVParser(object):
try:
data = [[r.strip() for r in row] for row in reader]
except csv.Error, e:
ErrorDialog(_('format error: file %(fname)s, line %(line)d: %(zero)s')) % {
'fname' : self.filename, 'line' : reader.line_num, 'zero' : e }
ErrorDialog(_('format error: file %(fname)s, line %(line)d: %(zero)s') % {
'fname' : self.filename, 'line' : reader.line_num, 'zero' : e })
try:
fp.close()
except: