From 4f841e6f6266ea1d4cedac3bcaf693ae84c2611d Mon Sep 17 00:00:00 2001
From: Lorin Hochstein <lorin@nimbisservices.com>
Date: Tue, 18 Jun 2013 23:05:40 -0400
Subject: [PATCH] django_manage: Pass --noinput to migrate

The django 'migrate' command should receive the --noinput command,
otherwise it can block waiting for user input.
---
 web_infrastructure/django_manage | 1 +
 1 file changed, 1 insertion(+)

diff --git a/web_infrastructure/django_manage b/web_infrastructure/django_manage
index eb766c6a0b0..d123ce353a2 100644
--- a/web_infrastructure/django_manage
+++ b/web_infrastructure/django_manage
@@ -177,6 +177,7 @@ def main():
     noinput_commands = (
         'flush',
         'syncdb',
+        'migrate',
         'test',
         'collectstatic',
         )