mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 03:24:54 +00:00
fix spawn of deluged
This commit is contained in:
parent
c4b62fc1fc
commit
1fb61c426f
1 changed files with 1 additions and 1 deletions
|
@ -438,7 +438,7 @@ class ConnectionManager(component.Component):
|
|||
if deluge.common.windows_check():
|
||||
win32api.WinExec("deluged -p %s" % port)
|
||||
else:
|
||||
subprocess.Popen(["xdg-open", "-p %s" % port])
|
||||
subprocess.Popen(["deluged", "-p %s" % port])
|
||||
|
||||
def on_button_close_clicked(self, widget):
|
||||
log.debug("on_button_close_clicked")
|
||||
|
|
Loading…
Add table
Reference in a new issue