From 5d71ee25eedbd5ace7bb92942f9f6ef9f023664d Mon Sep 17 00:00:00 2001 From: grossmj Date: Mon, 19 Oct 2020 18:34:27 +1030 Subject: [PATCH] Fix syntax error. --- gns3server/endpoints/controller/projects.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gns3server/endpoints/controller/projects.py b/gns3server/endpoints/controller/projects.py index d0dda64a..4e20aa42 100644 --- a/gns3server/endpoints/controller/projects.py +++ b/gns3server/endpoints/controller/projects.py @@ -318,8 +318,8 @@ async def import_project(project_id: UUID, request: Request): raise ControllerForbiddenError("The server is not local") #FIXME: broken - #path = None - #name = "test" + path = None + name = "test" # We write the content to a temporary location and after we extract it all. # It could be more optimal to stream this but it is not implemented in Python.