diff options
author | mkaay <mkaay@mkaay.de> | 2010-11-06 15:39:28 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2010-11-06 15:39:28 +0100 |
commit | 761a4104baaaa863ade8ca1aa0bda249557a0f80 (patch) | |
tree | e5a74cb97865bad7d327c7d910c2bb792c55a77d /pyLoadCore.py | |
parent | cache fix (diff) | |
download | pyload-761a4104baaaa863ade8ca1aa0bda249557a0f80.tar.xz |
account editing + fixes
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-x | pyLoadCore.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py index 297bb8c59..7818e7312 100755 --- a/pyLoadCore.py +++ b/pyLoadCore.py @@ -753,8 +753,7 @@ class ServerMethods(): return self.core.pullManager.getEvents(uuid) def get_accounts(self, force=False, refresh=True): - print force, refresh - if refresh: + if force: return self.core.accountManager.getAccountInfos() else: return self.core.accountManager.getCachedAccountInfos(refresh) |