From 158c263d31ea02924229cbfa7173c4726ca3c53b Mon Sep 17 00:00:00 2001 From: zblurx Date: Sat, 29 Jul 2023 11:25:47 +0200 Subject: [PATCH] fix deps --- donpapi/myseatbelt.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/donpapi/myseatbelt.py b/donpapi/myseatbelt.py index d31d195..bb43053 100644 --- a/donpapi/myseatbelt.py +++ b/donpapi/myseatbelt.py @@ -2190,18 +2190,18 @@ class MySeatBelt: myRecentFiles.run() def GetMRemoteNG(self): - from software.manager.mRemoteNG import mRemoteNG + from donpapi.software.manager.mRemoteNG import mRemoteNG myMRemoteNG = mRemoteNG(self.smb, self.myregops, self.myfileops, self.logging, self.options, self.db, self.users) myMRemoteNG.run() def GetPutty(self): - from software.sysadmin.putty import Putty + from donpapi.software.sysadmin.putty import Putty myPutty = Putty(self.smb, self.myregops, self.myfileops, self.logging, self.options, self.db) myPutty.run() def GetWinscp(self): - from software.sysadmin.winscp import Winscp + from donpapi.software.sysadmin.winscp import Winscp myWinscp = Winscp(self.smb, self.myregops, self.myfileops, self.logging, self.options, self.db) myWinscp.run()