mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-03 02:06:07 +01:00
RTF: remove unwanted localization
This commit is contained in:
parent
35866f67ef
commit
b027cafa1f
1 changed files with 3 additions and 3 deletions
|
|
@ -376,13 +376,13 @@ def parse_rtf(self):
|
|||
msg += 'self.__run_level is "%s"\n' % self.__run_level
|
||||
raise RtfInvalidCodeException, msg
|
||||
if self.__run_level > 1:
|
||||
sys.stderr.write(_('File could be older RTF...\n'))
|
||||
sys.stderr.write('File could be older RTF...\n')
|
||||
if found_destination:
|
||||
if self.__run_level > 1:
|
||||
sys.stderr.write(_(
|
||||
sys.stderr.write(
|
||||
'File also has newer RTF.\n'
|
||||
'Will do the best to convert.\n'
|
||||
))
|
||||
)
|
||||
add_brackets_obj = add_brackets.AddBrackets(
|
||||
in_file = self.__temp_file,
|
||||
bug_handler = RtfInvalidCodeException,
|
||||
|
|
|
|||
Loading…
Reference in a new issue