summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsrc/lib/Bcfg2/manage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/manage.py b/src/lib/Bcfg2/manage.py
index d0b202c18..2f97f6d96 100755
--- a/src/lib/Bcfg2/manage.py
+++ b/src/lib/Bcfg2/manage.py
@@ -23,7 +23,7 @@ if django.VERSION[0] == 1 and django.VERSION[1] <= 6:
sys.exit(1)
if __name__ == "__main__":
- if django.VERSION[0] == 1 and django.VERSION[1] >= 7:
+ if django.VERSION[0] == 1 and django.VERSION[1] >= 6:
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv[:1] + Bcfg2.Options.setup.django_command)
else: