예제 #1
0
파일: misc.py 프로젝트: Jactry/pitivi
 def __init__(self, paths, callback):
     Thread.__init__(self)
     self.log("New PathWalker for %s" % paths)
     self.paths = paths
     self.callback = callback
     self.stopme = threading.Event()
예제 #2
0
파일: misc.py 프로젝트: owlrana/pitivi
 def __init__(self, uris, callback):
     Thread.__init__(self)
     self.log("New PathWalker for %s", uris)
     self.uris = uris
     self.callback = callback
     self.stopme = threading.Event()
예제 #3
0
파일: misc.py 프로젝트: jubayed/pitivi
 def __init__(self, uris, callback):
     Thread.__init__(self)
     self.log("New PathWalker for %s", uris)
     self.uris = uris
     self.callback = callback
     self.stopme = threading.Event()
예제 #4
0
파일: misc.py 프로젝트: tomak-git/pitivi
 def __init__(self, paths, callback):
     Thread.__init__(self)
     self.log("New PathWalker for %s" % paths)
     self.paths = paths
     self.callback = callback
     self.stopme = threading.Event()