mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
let system env find location
This commit is contained in:
parent
86ce83edb1
commit
fa505b6750
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue