summaryrefslogtreecommitdiffstats
path: root/build/lib/Bcfg2/Server/Reports/manage.py
diff options
context:
space:
mode:
authorFabian Affolter <fabian@bernewireless.net>2010-12-13 23:22:40 +0100
committerFabian Affolter <fabian@bernewireless.net>2010-12-13 23:22:40 +0100
commitf5792d907e357c90624ec110d908d42b94296a12 (patch)
treefc4976fb05c8d4026bc2580e48ad8070d85bd7c7 /build/lib/Bcfg2/Server/Reports/manage.py
parent18b3b41b3f993b2dd5a10e1bbb8abf959c57c4e2 (diff)
downloadbcfg2-f5792d907e357c90624ec110d908d42b94296a12.tar.gz
bcfg2-f5792d907e357c90624ec110d908d42b94296a12.tar.bz2
bcfg2-f5792d907e357c90624ec110d908d42b94296a12.zip
Removed build files
Diffstat (limited to 'build/lib/Bcfg2/Server/Reports/manage.py')
-rw-r--r--build/lib/Bcfg2/Server/Reports/manage.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/build/lib/Bcfg2/Server/Reports/manage.py b/build/lib/Bcfg2/Server/Reports/manage.py
deleted file mode 100644
index 5e78ea979..000000000
--- a/build/lib/Bcfg2/Server/Reports/manage.py
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env python
-from django.core.management import execute_manager
-try:
- import settings # Assumed to be in the same directory.
-except ImportError:
- import sys
- sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n(If the file settings.py does indeed exist, it's causing an ImportError somehow.)\n" % __file__)
- sys.exit(1)
-
-if __name__ == "__main__":
- execute_manager(settings)