diff options
| author | 2019-10-11 17:27:36 +0100 | |
|---|---|---|
| committer | 2019-10-11 17:27:36 +0100 | |
| commit | 2ca702b7871f0dac0e8f6c62cce7e8e45dc7ea00 (patch) | |
| tree | c58a19b19bef86cd8d94d88fe1fb11b0c9f58582 /src | |
| parent | add `platform` to setup.py (linux only) (diff) | |
| signature | ||
don't have version 'v' prefix in VERSION
Diffstat (limited to 'src')
| -rw-r--r-- | src/IRCBot.py | 2 |
1 files changed, 1 insertions, 1 deletions
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" |
