Fix few export/import functions

This commit is contained in:
DarkPhoenix
2018-08-30 16:17:56 +03:00
parent 4e5a70993e
commit 52dbd8d9ef

View File

@@ -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)