add missing closing paren to bitbot's User Agent

This commit is contained in:
jesopo 2019-12-29 08:00:05 +00:00
parent 85d8ad1fe0
commit 9dc6069e06

View file

@ -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