Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
milesstoetzner committed Nov 18, 2023
1 parent e7cb9d6 commit 197303c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmds/zenodo/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def set_metadata(version):
}
headers = {"Content-Type": "application/json"}

r = requests.put(version['links']['self']), data=json.dumps(data), headers=headers, params={'access_token': access_token})
r = requests.put(version['links']['self'], data=json.dumps(data), headers=headers, params={'access_token': access_token})
print(r.status_code)
print(r.json())
print('Metadata set')
Expand Down

0 comments on commit 197303c

Please sign in to comment.