with last revision 3245 of client web, if you update the code you will 
certainly have an error in openobject/widgets/_js_i18n.py due to the manuel 
modification I gave.
clean the file !
delete lines
<<<<<<<TREE>>>>>>> MERGE-SOURCE 

replace :
for tr in trans:
if os.name == 'nt':
                pr, tr = tr.split("\\static\\")
                pr = pr.split("\\")[-1]
else:
                pr, tr = tr.split("/static/")
                pr = pr.split("/")[-1] 
translations.append((pr, tr))            
by

static_dir = "%sstatic%s" % (os.path.sep, os.path.sep)
for tr in trans:
            pr, tr = tr.split(static_dir)
            pr = pr.split(os.path.sep)[-1]
            translations.append((pr, tr))
good luck and thanks to Julien Thewys (OpenERP) who have mission to correct 
code for windows.




-------------------- m2f --------------------

--
http://www.openobject.com/forum/viewtopic.php?p=60986#60986

-------------------- m2f --------------------


_______________________________________________
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users

Reply via email to