Commit 90e0277a authored by Mickaël Desfrênes's avatar Mickaël Desfrênes
Browse files

fix config bug

parent 9c037f53
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -33,6 +33,8 @@ for key in CONFIG.keys():
            "CIRCE_ENABLE_WEB_UI",
        ]:
            CONFIG[key] = True if val == "1" else False
        elif key in ["CIRCE_PORT"]:
            CONFIG[key] = int(val)
        else:
            CONFIG[key] = val
    except KeyError:
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:

setuptools.setup(
    name="circe-CERTIC",
    version="0.0.27",
    version="0.0.28",
    author="Mickaël Desfrênes",
    author_email="mickael.desfrenes@unicaen.fr",
    description="Circe server",