#1095: testutil.py fails if sqlalchemy is not installed
----------------------+-----------------------------------------------------
Reporter: yattomu | Owner: anonymous
Type: defect | Status: new
Priority: normal | Milestone: 1.0
Component: CherryPy | Version: 0.9a5
Severity: minor | Keywords:
----------------------+-----------------------------------------------------
testutil.py imports sqlalchemy in any condition.
As installer does not automatically sqlalchemy, you need to install it
manually before using testutil.py (even if you don't need sqlalchemy.)
A small patch like:
{{{
try:
import sqlalchemy
except ImportError:
pass
}}}
might be useful.
--
Ticket URL: <http://trac.turbogears.org/turbogears/ticket/1095>
TurboGears <http://www.turbogears.org/>
TurboGears front-to-back web development
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears Tickets" 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-tickets
-~----------~----~----~----~------~----~------~--~---