From fa505b6750efcae6d6d42c691aa4f10a6b367335 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Wed, 8 Aug 2007 22:17:27 +0000 Subject: [PATCH] let system env find location --- src/interface.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/interface.py b/src/interface.py index 0eae7066f..32860cd97 100644 --- a/src/interface.py +++ b/src/interface.py @@ -640,11 +640,11 @@ class DelugeGTK: try: for uid in unique_ids: if self.config.get("file_manager") == 0: - command = "/usr/bin/konqueror" + command = "konqueror" if self.config.get("file_manager") == 1: - command = "/usr/bin/nautilus" + command = "nautilus" if self.config.get("file_manager") == 2: - command = "/usr/bin/thunar" + command = "thunar" os.system('%s %s' %(command, self.manager.unique_IDs[uid].save_dir)) except KeyError: pass