Merge pull request #24 from mmitch/master

add 'lwp-request' to non-html user agents
This commit is contained in:
Igor Chubin 2016-02-28 21:06:11 +01:00
commit 5a7f09d8b9

View File

@ -225,7 +225,7 @@ def wttr(location = None):
user_agent = request.headers.get('User-Agent').lower()
html_output = True
if 'curl' in user_agent or 'wget' in user_agent or 'httpie' in user_agent:
if 'curl' in user_agent or 'wget' in user_agent or 'httpie' in user_agent or 'lwp-request' in user_agent:
html_output = False
if location == ':help':