[open-ils-commits] r54 - constrictor/trunk
svn at svn.open-ils.org
svn at svn.open-ils.org
Wed Nov 26 16:31:16 EST 2008
Author: erickson
Date: 2008-11-26 16:31:12 -0500 (Wed, 26 Nov 2008)
New Revision: 54
Modified:
constrictor/trunk/deploy.py
Log:
django no longer supports the --noinput option. this will probably have a negative effect on the auto windows installer.
Modified: constrictor/trunk/deploy.py
===================================================================
--- constrictor/trunk/deploy.py 2008-11-26 21:22:15 UTC (rev 53)
+++ constrictor/trunk/deploy.py 2008-11-26 21:31:12 UTC (rev 54)
@@ -46,7 +46,7 @@
if os.path.exists(settings.DATABASE_NAME):
os.remove(settings.DATABASE_NAME)
- if os.system('python manage.py --noinput syncdb') != 0:
+ if os.system('python manage.py syncdb') != 0:
# tell django to build the base tables
sys.stderr.write('Error syncing database...')
sys.exit(1)
More information about the open-ils-commits
mailing list