mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 14:17:35 +03:00
Add missing absolute imports
This commit is contained in:
parent
50d3d01ea3
commit
2e9600c71f
1 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ import vobject
|
||||||
|
|
||||||
if sys.version_info >= (3, 5):
|
if sys.version_info >= (3, 5):
|
||||||
# HACK: Avoid import cycle for Python < 3.5
|
# HACK: Avoid import cycle for Python < 3.5
|
||||||
from . import xmlutils
|
from radicale import xmlutils
|
||||||
|
|
||||||
if os.name == "nt":
|
if os.name == "nt":
|
||||||
import ctypes
|
import ctypes
|
||||||
|
@ -97,7 +97,7 @@ def load(configuration, logger):
|
||||||
if sys.version_info < (3, 5):
|
if sys.version_info < (3, 5):
|
||||||
# HACK: Avoid import cycle for Python < 3.5
|
# HACK: Avoid import cycle for Python < 3.5
|
||||||
global xmlutils
|
global xmlutils
|
||||||
from . import xmlutils
|
from radicale import xmlutils
|
||||||
storage_type = configuration.get("storage", "type")
|
storage_type = configuration.get("storage", "type")
|
||||||
if storage_type == "multifilesystem":
|
if storage_type == "multifilesystem":
|
||||||
collection_class = Collection
|
collection_class = Collection
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue