Commit 703ec75a authored by Romain Loth's avatar Romain Loth

fix restparse function import problem

parent 3924cff0
...@@ -5,7 +5,6 @@ from math import floor ...@@ -5,7 +5,6 @@ from math import floor
from cgi import escape from cgi import escape
from re import sub from re import sub
from traceback import format_tb from traceback import format_tb
from urllib.parse import unquote
from .converter import CountryConverter from .converter import CountryConverter
......
...@@ -8,6 +8,7 @@ __email__ = "romain.loth@iscpif.fr" ...@@ -8,6 +8,7 @@ __email__ = "romain.loth@iscpif.fr"
# for reading config # for reading config
from configparser import ConfigParser from configparser import ConfigParser
from os import environ, path from os import environ, path
from urllib.parse import unquote
CONFIGMENU = [ CONFIGMENU = [
{"sec": 'main', "var":'LOG_LEVEL', "def": "INFO" }, {"sec": 'main', "var":'LOG_LEVEL', "def": "INFO" },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment