Skip to content

Commit a3ac2e4

Browse files
committed
Minor: Code optimizations to format_html_fingerprint()
1 parent d7e6ccf commit a3ac2e4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<a target="_blank" href="https://www.python.org/downloads/" title="Minimum Python version required to run this tool"><img src="https://img.shields.io/badge/Python-%3E%3D3.8-blue?labelColor=343b41"></a>
77
<a target="_blank" href="LICENSE" title="License of this tool"><img src="https://img.shields.io/badge/License-MIT-blue.svg?labelColor=343b41"></a>
88
<a target="_blank" href="https://github.com/rfc-st/humble/releases" title="Latest release of this tool"><img src="https://img.shields.io/github/v/release/rfc-st/humble?display_name=release&label=Latest%20Release&labelColor=343b41"></a>
9-
<a target="_blank" href="https://github.com/rfc-st/humble/commits/master" title="Latest commit of this tool"><img src="https://img.shields.io/badge/Latest_Commit-2024--12--03-blue.svg?labelColor=343b41"></a>
9+
<a target="_blank" href="https://github.com/rfc-st/humble/commits/master" title="Latest commit of this tool"><img src="https://img.shields.io/badge/Latest_Commit-2024--12--04-blue.svg?labelColor=343b41"></a>
1010
<a target="_blank" href="https://github.com/rfc-st/humble/actions?query=workflow%3ACodeQL" title="Results of the last analysis of this tool with CodeQL"><img src="https://github.com/rfc-st/humble/workflows/CodeQL/badge.svg"></a>
1111
<a target="_blank" href="https://pkg.kali.org/pkg/humble" title="Official tool in Kali Linux"><img src="https://img.shields.io/badge/Kali%20Linux-Tool-blue?labelColor=343b41"></a>
1212
<br />

humble.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
URL_STRING = ('rfc-st', ' URL : ', 'caniuse')
127127

128128
current_time = datetime.now().strftime("%Y/%m/%d - %H:%M:%S")
129-
local_version = datetime.strptime('2024-12-03', '%Y-%m-%d').date()
129+
local_version = datetime.strptime('2024-12-04', '%Y-%m-%d').date()
130130

131131

132132
class SSLContextAdapter(requests.adapters.HTTPAdapter):
@@ -1355,6 +1355,7 @@ def format_html_fingerprint(args, ln, sub_d, l_fng):
13551355
return ln
13561356
if 'class="ko"' not in ln:
13571357
ln = f"{sub_d['span_ko']}{ln[:idx]}{sub_d['span_f']}{ln[idx:]}"
1358+
return ln
13581359
ln_lower, i_lower = ln.casefold(), i.casefold()
13591360
if args.brief and i_lower in ln_lower and ':' not in ln and \
13601361
' class="ko"' not in ln:

0 commit comments

Comments
 (0)