aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorGravatar jesopo2019-12-29 08:00:05 +0000
committerGravatar jesopo2019-12-29 08:00:05 +0000
commit9dc6069e060d8baddd2c27b7e735ff29a91fa734 (patch)
treed61004120766b5492ce688ae63ea89c660ea6e6f /src/utils
parentcorrectly deal with "define previous message" (diff)
signature
add missing closing paren to bitbot's User Agent
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/http.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/http.py b/src/utils/http.py
index 8c3fe015..11d63797 100644
--- a/src/utils/http.py
+++ b/src/utils/http.py
@@ -28,7 +28,7 @@ def url_sanitise(url: str):
url = url[:-1]
return url
-USERAGENT = "Mozilla/5.0 (compatible; BitBot/%s; +%s" % (
+USERAGENT = "Mozilla/5.0 (compatible; BitBot/%s; +%s)" % (
IRCBot.VERSION, IRCBot.URL)
RESPONSE_MAX = (1024*1024)*100