demondrum schrieb:
    class AccountSet(SQLObject):
NameError: name 'SQLObject' is not defined

So changing the directory structure broke the path to SQLObject?  I've
tried
 export PYTHONPATH=/Library/Python/2.5/site-packages/SQLObject-0.10.2-
py2.5.egg/

You forgot to import SQLObject in Bill.py:
 from sqlobject import SQLObject

All symbols you need in a file must be visible there. Therefore you have to import them. It is not enough if you import SQLObject in __init__.py because that's a different scope.

fs

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature

Reply via email to