Browse Source

Indenting on deluge auth fix was incorrect.

pull/2247/head
Techmunk 12 years ago
parent
commit
74a4e7d19d
  1. 3
      libs/synchronousdeluge/client.py

3
libs/synchronousdeluge/client.py

@ -34,7 +34,8 @@ class DelugeClient(object):
appDataReg = _winreg.QueryValueEx(hkey, "AppData") appDataReg = _winreg.QueryValueEx(hkey, "AppData")
appDataPath = appDataReg[0] appDataPath = appDataReg[0]
_winreg.CloseKey(hkey) _winreg.CloseKey(hkey)
auth_file = os.path.join(appDataPath, "deluge", "auth")
auth_file = os.path.join(appDataPath, "deluge", "auth")
else: else:
from xdg.BaseDirectory import save_config_path from xdg.BaseDirectory import save_config_path
try: try:

Loading…
Cancel
Save