Redirect to correct module

Function was moved from service.Fit to service.Port
This commit is contained in:
Ebag333
2017-01-24 16:48:28 -08:00
parent c0ecc6a329
commit 992820ac42
2 changed files with 10 additions and 2 deletions

View File

@@ -61,6 +61,13 @@ INV_FLAG_FIGHTER = 158
class Port(object):
@classmethod
def getInstance(cls):
if cls.instance is None:
cls.instance = Port()
return cls.instance
def backupFits(self, path, callback):
thread = FitBackupThread(path, callback)
thread.start()