示例#1
0
 def launch_torrent(self, infohash):
     """Launch the torrent contents according to operating system."""
     if infohash in self.torrents:
         torrent = self.torrents[infohash]
         if torrent.metainfo.is_batch:
             LaunchPath.launchdir(torrent.working_path)
         else:
             LaunchPath.launchfile(torrent.working_path)
示例#2
0
 def launch_torrent(self, infohash):
     """Launch the torrent contents according to operating system."""
     if self.torrents.has_key(infohash):
         torrent = self.torrents[infohash]
         if torrent.metainfo.is_batch:
             LaunchPath.launchdir(torrent.working_path)
         else:
             LaunchPath.launchfile(torrent.working_path)
示例#3
0
 def launch_installer_at_exit(self):
     LaunchPath.launchfile(self.installer_to_launch_at_exit)
示例#4
0
 def launch_installer_at_exit(self):
     LaunchPath.launchfile(self.installer_to_launch_at_exit)