Skip to content

Commit ec31699

Browse files
authored
Hotfix: remove stray print, prep v0.1.6 (#194)
I botched it on v0.1.5. Should not have used a print statement, and then should not have left it in the PR.
1 parent 3ee9191 commit ec31699

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Created by .gitignore support plugin (hsz.mobi)
22

3+
.DS_Store
4+
35
.vscode
46

57
### Python template

docs/source/release-history.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
Release History
33
===============
44

5-
In Development
6-
--------------
5+
Version 0.1.6 (2025-01-24)
6+
--------------------------
77

8-
n/a
8+
Remove stray logging statements that should not have been included in v0.1.5. (:issue:`194`)
99

1010

1111
Version 0.1.5 (2025-01-23)

web_monitoring_diff/content_type.py

-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ def is_not_html(text, headers=None, check_options='normal'):
7171
- `nosniff` uses the `Content-Type` header but does not sniff.
7272
- `ignore` doesn’t do any checking at all.
7373
"""
74-
print(f'#is_not_html: check_options="{check_options}", headers={headers}, text={text[:500]}')
7574
if headers and (check_options == 'normal' or check_options == 'nosniff'):
7675
content_type = headers.get('Content-Type', '').split(';', 1)[0].strip()
7776
if content_type and VALID_CONTENT_TYPE_PATTERN.match(content_type):

0 commit comments

Comments
 (0)