diff --git a/CHANGELOG.md b/CHANGELOG.md index c4cfcc1..fdd3f02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. If there is a `Changed` section please read carefully, as this often means that you will need to adapt your `config.yml`. +## [1.7.2] - 2022-10-17 + +### Fixed 1.7.2 + +* Crash when evaluating !quickvote result + ## [1.7.1] - 2022-10-02 ### Fixed 1.7.1 diff --git a/tts.exe b/tts.exe index e76a2d4..47b5dbb 100644 Binary files a/tts.exe and b/tts.exe differ diff --git a/tts.py b/tts.py index 51a119e..401a3de 100644 --- a/tts.py +++ b/tts.py @@ -976,8 +976,8 @@ class IRC: logging.debug(count) - count = str(count[0][0].replace('#','')) - message = f"{CONF['MESSAGE']['VOTERESULT']} {count}" + result = str(count[0][0].replace('#','')) + message = f"{CONF['MESSAGE']['VOTERESULT']} {result}" raw_msg = { "TTS": True, "msg": message , @@ -1610,7 +1610,7 @@ if __name__ == "__main__": sys.tracebacklimit = 3 - VERSION = "1.7.1" + VERSION = "1.7.2" CONF = {} tts_done = [] MSG_QUEUE_RAW = []