infile = open(self.input_file, 'r')
try:
# Although reading from the catalog template, read_po must be fed
- # the locale in order to correcly calculate plurals
+ # the locale in order to correctly calculate plurals
catalog = read_po(infile, locale=self.locale)
finally:
infile.close()
infile = open(options.input_file, 'r')
try:
# Although reading from the catalog template, read_po must be fed
- # the locale in order to correcly calculate plurals
+ # the locale in order to correctly calculate plurals
catalog = read_po(infile, locale=options.locale)
finally:
infile.close()