add try to capture possible error

This commit is contained in:
Marcos Pinto 2007-08-08 21:46:47 +00:00
parent 8bd900d189
commit 2cebfca612

View File

@ -640,19 +640,18 @@ class DelugeGTK:
def open_folder(self, widget): def open_folder(self, widget):
unique_ids = self.get_selected_torrent_rows() unique_ids = self.get_selected_torrent_rows()
# try: try:
for uid in unique_ids: for uid in unique_ids:
if self.config.get("file_manager") == 0: if self.config.get("file_manager") == 0:
command = "/usr/bin/konqueror" command = "/usr/bin/konqueror"
if self.config.get("file_manager") == 1: if self.config.get("file_manager") == 1:
command = "/usr/bin/nautilus" command = "/usr/bin/nautilus"
if self.config.get("file_manager") == 2: if self.config.get("file_manager") == 2:
command = "/usr/bin/thunar" command = "/usr/bin/thunar"
# print "command %s uid %i dir %s\n" %(command, uid, self.manager.unique_IDs[uid].save_dir)
os.system('%s %s' %(command, self.manager.unique_IDs[uid].save_dir)) os.system('%s %s' %(command, self.manager.unique_IDs[uid].save_dir))
self.update() self.update()
# except KeyError: except KeyError:
# pass pass
def tor_start(self, widget): def tor_start(self, widget):
unique_ids = self.get_selected_torrent_rows() unique_ids = self.get_selected_torrent_rows()