Moved sipb-xen-www into a package
[invirt/packages/invirt-web.git] / templates / __init__.py
diff --git a/templates/__init__.py b/templates/__init__.py
deleted file mode 100644 (file)
index 8e94be7..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-__all__ = 'info command error help invalid list vnc'.split()
-for _name in __all__:
-    try:
-        _module = __import__(_name, globals(), {}, [_name])
-        globals()[_name] = getattr(_module, _name)
-    except ImportError, e:
-        import sys
-        print >> sys.stderr, 'Importing template "%s" raised error: %s' % (_name, e)
-