From 52dbd8d9ef98bbdcd7c164af305c633165198998 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Thu, 30 Aug 2018 16:17:56 +0300 Subject: [PATCH] Fix few export/import functions --- service/port/port.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/service/port/port.py b/service/port/port.py index 045f5561e..b821a126f 100644 --- a/service/port/port.py +++ b/service/port/port.py @@ -300,11 +300,11 @@ class Port(object): # ESI-related methods @staticmethod def importESI(string): - importESI(string) + return importESI(string) @staticmethod def exportESI(fit): - exportESI(fit) + return exportESI(fit) # XML-related methods @staticmethod @@ -313,4 +313,4 @@ class Port(object): @staticmethod def exportXml(iportuser=None, *fits): - exportXml(iportuser, *fits) + return exportXml(iportuser, *fits)