sqlalchemy is misspelled at the top of the file database.py file. This (lines 26 &27):
except ImportError:
sqlachemy= None
Should be this:
except ImportError:
sqlalchemy=None
Sean
On 2/25/06, Sean De La Torre <
[EMAIL PROTECTED]> wrote:
I just upgraded after the SQLAlchemy additions and received this when trying to run my project:
Traceback (most recent call last):
File "C:\data\projects\www\chartdemo\start-chartdemo.py ", line 6, in ?
import turbogears
File "c:\data\projects\turbogears\turbogears\__init__.py", line 14, in ?
from turbogears import controllers
File "c:\data\projects\turbogears\turbogears\controllers.py", line 14, in ?
from turbogears import database
File "c:\data\projects\turbogears\turbogears\database.py", line 264, in ?
if sqlalchemy:
NameError: name 'sqlalchemy' is not defined
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/turbogears
-~----------~----~----~----~------~----~------~--~---

