Skip to content

Commit

Permalink
Update version to 0.3.8 and add headers to logger debug
Browse files Browse the repository at this point in the history
  • Loading branch information
horta committed Nov 2, 2023
1 parent 1d60d27 commit b2a3916
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion control/deciphonctl/sched.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def get(self, url, params=None):
return response

def post(self, url: str, data=None, json=None, params=None, headers=None):
logger.debug(f"POST url={url} data={data} json={json}")
logger.debug(f"POST url={url} data={data} json={json} headers={headers}")
r = requests.post(url, data=data, json=json, params=params, headers=headers)
self.handle_http_response(r)
return r
Expand Down
2 changes: 1 addition & 1 deletion control/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "deciphonctl"
version = "0.3.7"
version = "0.3.8"
description = "Control Deciphon server."
authors = ["Danilo Horta <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit b2a3916

Please sign in to comment.