diff options
| -rw-r--r-- | VERSION | 2 | ||||
| -rw-r--r-- | src/IRCBot.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1 +1 @@ -v1.12.0 +1.12.0 diff --git a/src/IRCBot.py b/src/IRCBot.py index 5e4371e1..8eb1873e 100644 --- a/src/IRCBot.py +++ b/src/IRCBot.py @@ -4,7 +4,7 @@ from src import EventManager, Exports, IRCServer, Logging, ModuleManager from src import PollHook, PollSource, Socket, Timers, utils with open("VERSION", "r") as version_file: - VERSION = version_file.read().strip() + VERSION = "v%s" % version_file.read().strip() SOURCE = "https://git.io/bitbot" URL = "https://bitbot.dev" |
