Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.4, 2.0.5, and 2.1

stable i18n/msgfmt: call self.add() instead of .add(), fixed by Hanno Schlichting

Changeset 19066a706eaf

Parent fc5e099026cf

by Andrei Polushin

Changes to one file · Browse files at 19066a706eaf Showing diff from parent fc5e099026cf Diff from another changeset...

Change 1 of 1 Show Entire File i18n/​msgfmt.py Stacked
 
166
167
168
169
 
170
171
172
 
166
167
168
 
169
170
171
172
@@ -166,7 +166,7 @@
  # Now we are in a msgid section, output previous section   elif l.startswith('msgid') and not l.startswith('msgid_plural'):   if section == STR: - add(msgid, msgstr, fuzzy) + self.add(msgid, msgstr, fuzzy)   section = ID   l = l[5:]   msgid = msgstr = ''