diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-01-18 21:21:12 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-01-18 21:21:12 +0000 |
commit | a0251cd32120598521fbf7a3459993865998ceee (patch) | |
tree | c80084d8f70828656ecef08e53648ed1caaf959d /src/booking/quick_deployer.py | |
parent | 511a1a6c6ce7d657333fc945e364a4a855236fc1 (diff) | |
parent | 306c5add3a442c5585b244847fe127b055295ca6 (diff) |
Merge "Fix ConfigBundle not being set in quick deploy"
Diffstat (limited to 'src/booking/quick_deployer.py')
-rw-r--r-- | src/booking/quick_deployer.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/booking/quick_deployer.py b/src/booking/quick_deployer.py index 9bc8c66..c431017 100644 --- a/src/booking/quick_deployer.py +++ b/src/booking/quick_deployer.py @@ -229,6 +229,7 @@ def create_from_form(form, request): booking.end = timezone.now() + timedelta(days=int(length)) booking.resource = resource_bundle booking.pdf = ResourceManager().makePDF(booking.resource) + booking.config_bundle = cbundle booking.save() print("users field:") print(users_field) |