view libervia/__init__.py @ 1204:a2df53dfbf46

server: handle unexpected exceptions on connect: `classname` attribute was used on exceptions while it may not exists with some of them. This patch fixes this by showing a warning and re-raising the exception when this case happens.
author Goffi <goffi@goffi.org>
date Sun, 14 Jul 2019 14:48:31 +0200
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"