Order of the Butterfly
Posts: 348 from 2004/8/31
From: Québec - Canada
For "EDE" on ppa.pl:
Quote:
Traceback (most recent call last):
File "MorphOS:Stuff/blender-2.57-mos-rc1/2.57/scripts/addons/io_scene_3ds/__init__.py", line 78, in execute
return export_3ds.save(self, context, **self.as_keywords(ignore=("check_existing", "filter_glob")))
File "MorphOS:Stuff/blender-2.57-mos-rc1/2.57/scripts/addons/io_scene_3ds/export_3ds.py", line 1058, in save
file = open(filepath, 'wb')
IOError: [Errno 2] No such file or directory: '/Ram Disk/untitled.3ds'
Post your problems with Blender 2.57 here here, it could be useful for everyone!

So, your import problem seems to be a classical path issue where POSIX path is not translated into AmigaOS path.
Blender uses POSIX path internaly, but Python is a pure native port so uses AmigaOS path forms...
That's why a '/Ram Disk/untitled.3ds' can't be found by a Python code.
Now to fix that there are 2 cases:
- the python script get the path from an exported Blender API, and this one has not been fixed by me yet.
- the path has been contructed by the script using POSIX concept, the script author should burn in Hell!
[ Edited by Yomgui 18.04.2011 - 16:34 ]And now... next project!