diff --git a/calculate/vars/install/os/__init__.py b/calculate/vars/install/os/__init__.py index 7a91869..84b549a 100644 --- a/calculate/vars/install/os/__init__.py +++ b/calculate/vars/install/os/__init__.py @@ -1,7 +1,7 @@ from calculate.variables.datavars import Variable, Namespace, Dependence, \ StringType, BooleanType, HashType, ListType, Calculate, Copy from calculate.vars.main.os.func import get_arch_gentoo -from .func import * +from calculate.vars.install.os.func import * with Namespace("arch"): Variable("machine", type=StringType, diff --git a/calculate/vars/main/os/__init__.py b/calculate/vars/main/os/__init__.py index e226b54..56356c7 100644 --- a/calculate/vars/main/os/__init__.py +++ b/calculate/vars/main/os/__init__.py @@ -1,6 +1,6 @@ from calculate.variables.datavars import Variable, Namespace, Dependence, \ StringType, BooleanType, HashType, Calculate -from .func import * +from calculate.vars.main.os.func import * with Namespace("arch"): Variable("machine", type=StringType,