Update index.py

pull/109/head
midoks 6 years ago
parent b8a4704545
commit f1d2cf7e18
  1. 6
      plugins/qbittorrent/index.py

@ -130,7 +130,7 @@ def stop():
data = public.execShell(file + ' stop')
if data[1] == '':
return 'ok'
return 'fail'
return data[1]
def restart():
@ -138,7 +138,7 @@ def restart():
data = public.execShell(file + ' restart')
if data[1] == '':
return 'ok'
return 'fail'
return data[1]
def reload():
@ -146,7 +146,7 @@ def reload():
data = public.execShell(file + ' reload')
if data[1] == '':
return 'ok'
return 'fail'
return data[1]
def initdStatus():

Loading…
Cancel
Save