Don't return 'state' attr in bigpanda module
Fixes a double parameter being passed afterwards
This commit is contained in:
parent
57f3888b13
commit
472614c988
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ def main():
|
|||
request_url = url + '/data/events/deployments/end'
|
||||
|
||||
# Build the deployment object we return
|
||||
deployment = dict(token=token, state=state, url=url)
|
||||
deployment = dict(token=token, url=url)
|
||||
deployment.update(body)
|
||||
if 'errorMessage' in deployment:
|
||||
message = deployment.pop('errorMessage')
|
||||
|
|
Loading…
Reference in a new issue