diff options
-rw-r--r-- | config | 2 | ||||
-rw-r--r-- | module/plugins/DLC.pyc | bin | 2231 -> 5829 bytes | |||
-rw-r--r-- | module/plugins/LinkList.py | 11 |
3 files changed, 7 insertions, 6 deletions
@@ -5,7 +5,7 @@ username = admin password = pwhere [ssl] -activated = False +activated = True cert = ssl.crt key = ssl.key diff --git a/module/plugins/DLC.pyc b/module/plugins/DLC.pyc Binary files differindex 980dd8ace..879e679fc 100644 --- a/module/plugins/DLC.pyc +++ b/module/plugins/DLC.pyc diff --git a/module/plugins/LinkList.py b/module/plugins/LinkList.py index e496f2a57..c934ca464 100644 --- a/module/plugins/LinkList.py +++ b/module/plugins/LinkList.py @@ -35,10 +35,11 @@ class LinkList(Plugin): if link != "\n": tmpLinks.append(link) txt.close() - - txt = open(linkList, 'w') - txt.write("") - txt.close() - #may delete read txt file? + + if not self.parent.core.config['general']['debug_mode']: + txt = open(linkList, 'w') + txt.write("") + txt.close() + #may delete read txt file? self.links = tmpLinks |