Skip to content
Snippets Groups Projects
Commit be10d1e5 authored by Raphael Collet's avatar Raphael Collet
Browse files

[IMP] translate: small, non-breaking code improvements

parent 4d6fb49b
No related branches found
No related tags found
No related merge requests found
......@@ -667,8 +667,7 @@ def trans_generate(lang, modules, cr):
return
tnx = (module, source, name, id, type, tuple(comments or ()))
if tnx not in _to_translate:
_to_translate.add(tnx)
_to_translate.add(tnx)
def encode(s):
if isinstance(s, unicode):
......@@ -1002,8 +1001,8 @@ def trans_load_data(cr, fileobj, fileformat, lang, lang_name=None, verbose=True,
if not res_id:
return
if unicode(res_id).isdigit():
# res_id is either an integer, or a string composed of digits only
if isinstance(res_id, (int, long)) or \
(isinstance(res_id, basestring) and res_id.isdigit()):
dic['res_id'] = int(res_id)
dic['module'] = module_name
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment