Changeset 5700
- Timestamp:
- 11/17/08 15:32:06 (2 months ago)
- Files:
-
- branches/1.1/turbogears/command/base.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/turbogears/command/base.py
r5547 r5700 301 301 from turbogears import toolbox 302 302 303 # TODO: remove this check once we convert the whole toolbox to genshi 304 try: 305 import turbokid 306 except ImportError: 307 # we could not import turbokid, the toolbox will crash with 308 # horrible tracebacks... 309 print "Please easy_install turbokid, toolbox cannot run without it" 310 # sys exit with different than zero error code in case someone 311 # is using the error code to know if it worked... 312 sys.exit(2) 313 303 314 # Make sure we have full configuration with every option 304 315 # in it so other plugins or whatever find what they need