Issue: Unable to create backup of database.

Regression of commit id: bc4703c5
This commit is contained in:
Surinder Kumar 2016-06-21 09:17:13 +01:00 committed by Dave Page
parent 5051470bc7
commit eb5a97bc3c

View File

@ -377,9 +377,9 @@ def create_backup_objects_job(sid):
def set_value(key, param, value):
if key in data:
if value:
if value is True and param[key]:
if value is True and data[key]:
args.append(param)
args.append(param[key])
args.append(data[key])
else:
args.append(param)
args.append(value)