Remove spurious print statement

This commit is contained in:
Joshua Boniface 2020-07-08 13:28:47 -04:00
parent a1ba9d2eeb
commit be405caa11
1 changed files with 0 additions and 1 deletions

View File

@ -196,7 +196,6 @@ def Authenticator(function):
#
@celery.task(bind=True)
def create_vm(self, vm_name, profile_name, define_vm=True, start_vm=True, script_run_args=[]):
print(script_run_args)
return api_provisioner.create_vm(self, vm_name, profile_name, define_vm=define_vm, start_vm=start_vm, script_run_args=script_run_args)