diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-05-18 09:48:07 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-05-18 09:48:07 +0200 |
commit | 41faf73af4deb8dcd73e0c2e55073f1ef7656a7f (patch) | |
tree | 08fa67128d9ba0451b9397ea0fcc192d2501c431 /module/plugins/hooks | |
parent | [XFSAccount] Fix https://github.com/pyload/pyload/issues/1420 (diff) | |
download | pyload-41faf73af4deb8dcd73e0c2e55073f1ef7656a7f.tar.xz |
[XFSHoster] Fix https://github.com/pyload/pyload/issues/1296
Diffstat (limited to 'module/plugins/hooks')
-rw-r--r-- | module/plugins/hooks/UserAgentSwitcher.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hooks/UserAgentSwitcher.py b/module/plugins/hooks/UserAgentSwitcher.py index 912c2ef09..0b36e38ec 100644 --- a/module/plugins/hooks/UserAgentSwitcher.py +++ b/module/plugins/hooks/UserAgentSwitcher.py @@ -15,10 +15,10 @@ class UserAgentSwitcher(Hook): __type__ = "hook" __version__ = "0.04" - __config__ = [("activated", "bool", "Activated" , True ), - ("uaf" , "file", "Random user-agents file" , "" ), - ("uar" , "bool", "Random user-agent" , False ), - ("uas" , "str" , "Custom user-agent string", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0")] + __config__ = [("activated", "bool", "Activated" , True ), + ("uaf" , "file", "Random user-agent by file" , "" ), + ("uar" , "bool", "Random user-agent" , False ), + ("uas" , "str" , "Custom user-agent string" , "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0")] __description__ = """Custom user-agent""" __license__ = "GPLv3" |