예제 #1
0
파일: Stubs.py 프로젝트: keat01/pyLoad
    def writeDebugReport(self):
        if hasattr(self, "pyfile"):
            dump = BaseThread.writeDebugReport(self, self.plugin.__name__, pyfile=self.pyfile)
        else:
            dump = BaseThread.writeDebugReport(self, self.plugin.__name__, plugin=self.plugin)

        return dump
예제 #2
0
    def writeDebugReport(self):
        if hasattr(self, "pyfile"):
            dump = BaseThread.writeDebugReport(self, self.plugin.__name__, pyfile=self.pyfile)
        else:
            dump = BaseThread.writeDebugReport(self, self.plugin.__name__, plugin=self.plugin)

        return dump
예제 #3
0
파일: Stubs.py 프로젝트: keat01/pyLoad
 def __init__(self, core):
     BaseThread.__init__(self, core)
     self.plugin = None
예제 #4
0
 def __init__(self, core):
     BaseThread.__init__(self, core)
     self.plugin = None