This commit is contained in:
zblurx 2023-07-29 11:25:47 +02:00
parent 653264670f
commit 158c263d31
1 changed files with 3 additions and 3 deletions

View File

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