diff options
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-x | pyLoadCore.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py index c2cf6d829..5c659e538 100755 --- a/pyLoadCore.py +++ b/pyLoadCore.py @@ -465,8 +465,11 @@ class ServerMethods(): raise Exception("not allowed!") def get_config(self): - pass - + d = self.core.xmlconfig.getConfigDict() + del d["remote"]["username"] + del d["remote"]["password"] + return d + def pause_server(self): self.core.thread_list.pause = True |