don't have version 'v' prefix in VERSION
This commit is contained in:
parent
54b87c74a8
commit
2ca702b787
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
v1.12.0
|
||||
1.12.0
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue