mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
2 lines
108 B
Python
Executable file
2 lines
108 B
Python
Executable file
VERSION = (0, 1, 4, 'a', 0)
|
|
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(map(str, VERSION[3:]))
|