diff options
| author | 2019-12-29 08:00:05 +0000 | |
|---|---|---|
| committer | 2020-01-08 10:30:56 +0000 | |
| commit | 1ca87bbef9cf91b4e198e0ee45b4f2531f2ad6fe (patch) | |
| tree | 48a5f9921d334903ef872015864f2ad4a9a4eb3d | |
| parent | v1.17.1 release (diff) | |
| signature | ||
add missing closing paren to bitbot's User Agent
| -rw-r--r-- | src/utils/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/http.py b/src/utils/http.py index 6fe6be53..8b43a753 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 |
