view libervia/__init__.py @ 1373:2938d1b65bd5

browser (invitation): allow invitation of unknown JID: If something like a JID is entered in invitation field and it is unknown (i.e. not in roster), pressing "enter" will send an invitation to it.
author Goffi <goffi@goffi.org>
date Sun, 29 Nov 2020 17:08:36 +0100
parents 3b844004c0b4
children ac2374c92294
line wrap: on
line source

import os.path

version_file = os.path.join(os.path.dirname(__file__), "VERSION")
try:
    with open(version_file) as f:
        __version__ = f.read().strip()
except NotImplementedError:
    # pyjamas workaround
    __version__ = "0.7.0D"