source:
trunk/packages/invirt-web/code/templates/__init__.py
@
2211
| Last change on this file since 2211 was 1318, checked in by price, 17 years ago | |
|---|---|
| File size: 360 bytes | |
| Line | |
|---|---|
| 1 | __all__ = 'info command error error_raw help invalid list unauth vnc'.split() |
| 2 | for _name in __all__: |
| 3 | try: |
| 4 | _module = __import__(_name, globals(), {}, [_name]) |
| 5 | globals()[_name] = getattr(_module, _name) |
| 6 | except ImportError, e: |
| 7 | import sys |
| 8 | print >> sys.stderr, 'Importing template "%s" raised error: %s' % (_name, e) |
| 9 |
Note: See TracBrowser
for help on using the repository browser.
