示例#1
0
 def stop(self):
     if os.path.exists(_CMD_FIFO):
         try:
             os.remove(_CMD_FIFO)
         except Exception:
             pass
     ExternalProcess.stop(self)
示例#2
0
 def stop(self):
   if os.path.exists(_CMD_FIFO):
     try:
       os.remove(_CMD_FIFO)
     except Exception:
       pass
   ExternalProcess.stop(self)
示例#3
0
 def stop(self):
   if self.subsfile is not None and os.path.exists(self.subsfile):
     try:
       os.remove(self.subsfile)
     except Exception:
       pass
   ExternalProcess.stop(self)
示例#4
0
 def stop(self):
     if self.subsfile is not None and os.path.exists(self.subsfile):
         try:
             os.remove(self.subsfile)
         except Exception:
             pass
     ExternalProcess.stop(self)
示例#5
0
 def stop(self):
   try:
     shutil.rmtree('/tmp/torrent-stream')
   except Exception:
     pass
   ExternalProcess.stop(self)
示例#6
0
 def stop(self):
     try:
         shutil.rmtree('/tmp/torrent-stream')
     except Exception:
         pass
     ExternalProcess.stop(self)