diff --git a/CHANGELOG.md b/CHANGELOG.md index b8c069f..b8e4112 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,10 @@ All notable changes to this project will be documented in this file. * `!quickvote` feature (see README.md for details) * `!ping` command added - * Option to start in TTS disabled mode + + * Configoption to start TTS in disabled mode + * OAuth-Token generator + * Webbrowser autostart ### Changed diff --git a/tts.py b/tts.py index b2c0e0c..e8e5286 100644 --- a/tts.py +++ b/tts.py @@ -468,7 +468,7 @@ class HTTPserv(BaseHTTPRequestHandler): self.send_response(200) self.send_header('Content-type', 'text/html') self.end_headers() - self.wfile.write(bytes("OAuth Token Generator
Click to start the OAuth process.
\n", "utf-8")) + self.wfile.write(bytes("OAuth Token Generator
Click to start the OAuth process.
\n", "utf-8")) else: self.send_response(500) self.send_header('Content-type', 'text/plain')