c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #30834
[Bug 828959] [NEW] Import CSV file fails
Public bug reported:
Hi, when you try to import a CSV file and it has any non UTF-8
character, the load fails with no warning...
on win_import.py, if a try.... except is added this can be avoided,
like...
try:
datas.append(map(lambda x:x.decode(csv_data['combo']).encode('utf-8'), line))
except:
common.warning(_('Error on text file.\nCorrect %s and try again !') % (line,), _('Import Error.'), parent=parent)
return False
** Affects: openobject-client
Importance: Undecided
Status: New
--
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/828959
Title:
Import CSV file fails
Status in OpenERP GTK Client:
New
Bug description:
Hi, when you try to import a CSV file and it has any non UTF-8
character, the load fails with no warning...
on win_import.py, if a try.... except is added this can be avoided,
like...
try:
datas.append(map(lambda x:x.decode(csv_data['combo']).encode('utf-8'), line))
except:
common.warning(_('Error on text file.\nCorrect %s and try again !') % (line,), _('Import Error.'), parent=parent)
return False
To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-client/+bug/828959/+subscriptions
Follow ups
References