mirror of https://gitlab.com/gpvkt/twitchtts.git
Bugfix: Add config options, disabled webserver logging
This commit is contained in:
parent
6746b2282d
commit
4ef62c2dc8
|
@ -18,7 +18,9 @@ messages:
|
||||||
too_long: "Sorry, your TTS message is too long."
|
too_long: "Sorry, your TTS message is too long."
|
||||||
disabled: "Sorry, TTS is disabled right now."
|
disabled: "Sorry, TTS is disabled right now."
|
||||||
denied: "Sorry, you are not allowed to use TTS."
|
denied: "Sorry, you are not allowed to use TTS."
|
||||||
|
whitelist: "Sorry, you are not allowed to use TTS."
|
||||||
subonly: "Sorry, TTS is a sub-only feature."
|
subonly: "Sorry, TTS is a sub-only feature."
|
||||||
|
modonly: "Sorry, TTS is a mod-only feature."
|
||||||
ready: "TTS bot alpha ready!"
|
ready: "TTS bot alpha ready!"
|
||||||
says: "says"
|
says: "says"
|
||||||
|
|
||||||
|
|
4
tts.py
4
tts.py
|
@ -203,6 +203,9 @@ class IRC:
|
||||||
return resp
|
return resp
|
||||||
|
|
||||||
class HTTPserv(BaseHTTPRequestHandler):
|
class HTTPserv(BaseHTTPRequestHandler):
|
||||||
|
def log_message(self, format, *args):
|
||||||
|
return
|
||||||
|
|
||||||
def do_GET(self):
|
def do_GET(self):
|
||||||
if self.path == '/':
|
if self.path == '/':
|
||||||
self.send_response(200)
|
self.send_response(200)
|
||||||
|
@ -308,6 +311,7 @@ def load_config():
|
||||||
conf['MESSAGE']['DISABLED'] = cfg['messages']['disabled']
|
conf['MESSAGE']['DISABLED'] = cfg['messages']['disabled']
|
||||||
conf['MESSAGE']['DENIED'] = cfg['messages']['denied']
|
conf['MESSAGE']['DENIED'] = cfg['messages']['denied']
|
||||||
conf['MESSAGE']['SUBONLY'] = cfg['messages']['subonly']
|
conf['MESSAGE']['SUBONLY'] = cfg['messages']['subonly']
|
||||||
|
conf['MESSAGE']['MODONLY'] = cfg['messages']['modonly']
|
||||||
conf['MESSAGE']['READY'] = cfg['messages']['ready']
|
conf['MESSAGE']['READY'] = cfg['messages']['ready']
|
||||||
conf['MESSAGE']['WHITELISTONLY'] = cfg['messages']['whitelist']
|
conf['MESSAGE']['WHITELISTONLY'] = cfg['messages']['whitelist']
|
||||||
conf['MESSAGE']['SAYS'] = cfg['messages']['says']
|
conf['MESSAGE']['SAYS'] = cfg['messages']['says']
|
||||||
|
|
Loading…
Reference in New Issue