From: erickson Date: Wed, 26 Nov 2008 21:31:12 +0000 (+0000) Subject: django no longer supports the --noinput option. this will probably have a negative... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d7bd3be41e743bbbef5b1b54875d22ce72959f2b;p=working%2Frandom.git 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 --- 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)