mirror of
https://github.com/chubin/cheat.sh.git
synced 2026-06-20 13:16:44 +02:00
Merge pull request #103 from grayed/master
User agents are "normalized" to lower case, so make it "openbsd ftp" …
This commit is contained in:
+1
-1
@@ -49,7 +49,7 @@ def is_html_needed(user_agent):
|
||||
"""
|
||||
Basing on `user_agent`, return whether it needs HTML or ANSI
|
||||
"""
|
||||
plaintext_clients = ['curl', 'wget', 'fetch', 'httpie', 'lwp-request', 'OpenBSD ftp', 'python-requests']
|
||||
plaintext_clients = ['curl', 'wget', 'fetch', 'httpie', 'lwp-request', 'openbsd ftp', 'python-requests']
|
||||
return all([x not in user_agent for x in plaintext_clients])
|
||||
|
||||
def is_result_a_script(query):
|
||||
|
||||
Reference in New Issue
Block a user