From 60c608d095b8f7d63a13bf1e32e5b4e960e61ebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 3 Mar 2017 12:33:23 +0100 Subject: [PATCH] Fixup of syntax error introduced by 2to3 --- pillar/web/nodes/routes.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pillar/web/nodes/routes.py b/pillar/web/nodes/routes.py index f39f1a93..0c1a1fb0 100644 --- a/pillar/web/nodes/routes.py +++ b/pillar/web/nodes/routes.py @@ -583,7 +583,4 @@ def url_for_node(node_id=None, node=None): # Import of custom modules (using the same nodes decorator) -from . import custom.comments -from . import custom.groups -from . import custom.storage -from . import custom.posts +from .custom import comments, groups, storage, posts