import de tiramisu ou tiramisu3
This commit is contained in:
parent
cdc4013450
commit
f07f76a4ef
|
@ -15,8 +15,12 @@ from os.path import dirname, join, isfile
|
|||
from Cheetah.Template import Template as ChtTemplate
|
||||
from Cheetah.NameMapper import NotFound as CheetahNotFound
|
||||
|
||||
from tiramisu import Config
|
||||
from tiramisu.error import PropertiesOptionError
|
||||
try:
|
||||
from tiramisu import Config
|
||||
from tiramisu.error import PropertiesOptionError
|
||||
except:
|
||||
from tiramisu3 import Config
|
||||
from tiramisu3.error import PropertiesOptionError
|
||||
|
||||
from .config import patch_dir, variable_namespace
|
||||
from .error import FileNotFound, TemplateError
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
from tiramisu import DynOptionDescription
|
||||
try:
|
||||
from tiramisu import DynOptionDescription
|
||||
except:
|
||||
from tiramisu3 import DynOptionDescription
|
||||
from .utils import normalize_family
|
||||
|
||||
|
||||
|
|
|
@ -47,7 +47,10 @@ class TiramisuReflector:
|
|||
funcs_path,
|
||||
):
|
||||
self.storage = ElementStorage()
|
||||
self.storage.text = ["from tiramisu import *",
|
||||
self.storage.text = ["try:",
|
||||
" from tiramisu import *",
|
||||
"except:",
|
||||
" from tiramisu3 import *",
|
||||
"from rougail.tiramisu import ConvertDynOptionDescription",
|
||||
"import imp",
|
||||
f"func = imp.load_source('func', '{funcs_path}')",
|
||||
|
|
Loading…
Reference in New Issue