mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-05 16:08:40 +00:00
fix vista check
This commit is contained in:
parent
35e6059b10
commit
c464d64d46
1 changed files with 1 additions and 1 deletions
|
@ -351,7 +351,7 @@ class Manager:
|
||||||
|
|
||||||
#kill dbus on windows
|
#kill dbus on windows
|
||||||
if common.windows_check():
|
if common.windows_check():
|
||||||
if platform.win32_ver()[1] >= 6:
|
if platform.win32_ver()[1] > '6':
|
||||||
os.popen4('taskkill.exe /IM dbus-daemon-deluge.exe /F')
|
os.popen4('taskkill.exe /IM dbus-daemon-deluge.exe /F')
|
||||||
else:
|
else:
|
||||||
os.popen4('tskill.exe dbus-daemon-deluge')
|
os.popen4('tskill.exe dbus-daemon-deluge')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue