Hi all When trying to run fsrecover.py I get the following error: ~/.../var>python /.../lib/python/ZODB/fsrecover.py Data.fs.old Traceback (most recent call last): File "/.../lib/python/ZODB/fsrecover.py", line 92, in ? import FileStorage File "/.../lib/python/ZODB/FileStorage.py", line 194, in ? from TimeStamp import TimeStamp ImportError: No module named ExtensionClass What am I doing wrong? Regards Oliver Erlewein -- GMX - Die Kommunikationsplattform im Internet. http://www.gmx.net
are you running it in the right place? i think you must be in lib/python when you run it. jens On Friday, April 5, 2002, at 05:18 , Oliver Erlewein wrote:
Hi all
When trying to run fsrecover.py I get the following error:
~/.../var>python /.../lib/python/ZODB/fsrecover.py Data.fs.old Traceback (most recent call last): File "/.../lib/python/ZODB/fsrecover.py", line 92, in ? import FileStorage File "/.../lib/python/ZODB/FileStorage.py", line 194, in ? from TimeStamp import TimeStamp ImportError: No module named ExtensionClass
What am I doing wrong?
Regards Oliver Erlewein
-- GMX - Die Kommunikationsplattform im Internet. http://www.gmx.net
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Oliver Erlewein writes:
When trying to run fsrecover.py I get the following error:
~/.../var>python /.../lib/python/ZODB/fsrecover.py Data.fs.old Traceback (most recent call last): File "/.../lib/python/ZODB/fsrecover.py", line 92, in ? import FileStorage File "/.../lib/python/ZODB/FileStorage.py", line 194, in ? from TimeStamp import TimeStamp ImportError: No module named ExtensionClass
What am I doing wrong? Your PYTHONPATH is not set in a way that "fsrecover" finds "ExtensionClass.so".
Add "lib/python" to "PYTHONPATH". Dieter
participants (3)
-
Dieter Maurer -
Jens Vagelpohl -
Oliver Erlewein