Skip to content Skip to sidebar Skip to footer

Django Attributeerror 'float' Object Has No Attribute 'split'

I installed the module Django Import / Export link the installation went smoothly. Now when I want to import a file with the extension .xls it shows me the following error: Attribu

Solution 1:

You are trying to split a float value in this line ids = filter(None, value.split(self.separator))

I think you can just remove this line. As you handle the None case and split before.

Post a Comment for "Django Attributeerror 'float' Object Has No Attribute 'split'"