Skip to content

Commit

Permalink
Merge pull request #41 from huntflow/fix_debug_logging
Browse files Browse the repository at this point in the history
fix debug logging
  • Loading branch information
alexreznikoff authored May 10, 2023
2 parents 0ce8735 + 7da1c98 commit 03e68cf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
python-tortik (0.2.16) unstable; urgency=low

* Fix debug logging

-- Reznikov Aleksey <[email protected]> Wed, 10 May 2023 16:30:00 +0300

python-tortik (0.2.15) unstable; urgency=low

* Added tornado error code processing
Expand Down
2 changes: 1 addition & 1 deletion tortik/page.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def _on_fetch(response, name):
name,
response.code,
content_type,
response.body.decode("utf-8", errors="replace"),
response.body.decode("utf-8", errors="replace") if response.body else None,
)
try:
if "xml" in content_type:
Expand Down
2 changes: 1 addition & 1 deletion tortik/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ def __parse_version_from_changelog():
return None


version = __parse_version_from_changelog() or "0.2.15"
version = __parse_version_from_changelog() or "0.2.16"

0 comments on commit 03e68cf

Please sign in to comment.