Skip to content

Commit

Permalink
fix logging error
Browse files Browse the repository at this point in the history
  • Loading branch information
Leow, Max committed Aug 18, 2022
1 parent 5d717a6 commit 61afbde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion duck_jenkins/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def upstream_lookup(json_file: str):
"""
jpath = '$.actions[?(@._class=="hudson.model.CauseAction")].causes'
causes = json_lookup(json_file, jpath)
logging.debug("_utils.upstream_lookup - " + causes)
logging.debug("_utils.upstream_lookup - %s", causes)
if causes:
return causes[-1]
return None
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="duck-jenkins",
version="0.0.22",
version="0.0.23",
install_requires=[
"duckdb",
"pandas",
Expand Down

0 comments on commit 61afbde

Please sign in to comment.