Browse Source

Fixed manage.py to point at deployment module instead of my dev module using internally for development.

Ralfp 12 years ago
parent
commit
c7f9c64f3a
2 changed files with 3 additions and 2 deletions
  1. 2 1
      .gitignore
  2. 1 1
      manage.py

+ 2 - 1
.gitignore

@@ -184,4 +184,5 @@ static/strawman/**
 templates/strawman/**
 unidecode/**
 yaml/**
-path.py
+dev-manage.py
+path.py

+ 1 - 1
manage.py

@@ -3,7 +3,7 @@ import os
 import sys
 
 if __name__ == "__main__":
-    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "dev.settings")
+    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "deployment.settings")
 
     from django.core.management import execute_from_command_line