Fix create_deployment not actually setting base_site_url.

(imported from commit cd008060623ad393f02abbb6c5a4dfd9c00c7b41)
This commit is contained in:
Tim Abbott 2013-11-14 10:15:25 -05:00
parent 844e0948e3
commit 3a421e1bd1
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class Command(BaseCommand):
old_dep.save()
dep.realms = [realm]
dep.base_api_url = options["api"]
dep.base_web_url = options["web"]
dep.base_site_url = options["web"]
dep.save()
print "Deployment %s created." % (dep.id,)
print "DEPLOYMENT_ROLE_NAME = %s" % (dep.name,)