don't have version 'v' prefix in VERSION

This commit is contained in:
jesopo 2019-10-11 17:27:36 +01:00
parent 54b87c74a8
commit 2ca702b787
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
v1.12.0
1.12.0

View file

@ -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"