We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5eb6c7e commit 9b4f0c7Copy full SHA for 9b4f0c7
1 file changed
api/index.py
@@ -433,12 +433,11 @@ def switch_commit():
433
return jsonify({'status': f'Missing mandatory parameter "commit"'}), 400
434
435
# Attempt to switch the repository to the specified commit
436
- change_set = git_utils.switch_commit(repo, commit)
+ git_utils.switch_commit(repo, commit)
437
438
# Create a success response
439
response = {
440
- 'status': 'success',
441
- 'change_set': change_set
+ 'status': 'success'
442
}
443
444
return jsonify(response), 200
0 commit comments