We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ef4ac5 commit ff0d0c8Copy full SHA for ff0d0c8
CHANGELOG.rst
@@ -2,6 +2,11 @@
2
Changelog
3
=========
4
5
+5.1.1 (2024-05-21)
6
+------------------
7
+
8
+* Do not display an authentication mask for http protocols if there are no actual credentials specified.
9
10
5.1.0 (2024-04-12)
11
------------------
12
src/holdup/checks.py
@@ -158,7 +158,7 @@ def __repr__(self):
158
159
def display_definition(self, *, verbose_passwords):
160
url = self.parsed_url
161
- if not verbose_passwords:
+ if url.username and not verbose_passwords:
162
if not url.password:
163
mask = "******"
164
else:
0 commit comments