From d7bd3be41e743bbbef5b1b54875d22ce72959f2b Mon Sep 17 00:00:00 2001 From: erickson Date: Wed, 26 Nov 2008 21:31:12 +0000 Subject: [PATCH] django no longer supports the --noinput option. this will probably have a negative effect on the auto windows installer. git-svn-id: svn://svn.open-ils.org/ILS-Contrib/constrictor/trunk@54 6d9bc8c9-1ec2-4278-b937-99fde70a366f --- deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.py b/deploy.py index d638bfca3..e1476142e 100755 --- a/deploy.py +++ b/deploy.py @@ -46,7 +46,7 @@ def buildDjangoDB(): 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) -- 2.11.0