diff options
-rw-r--r-- | module/config/core.xml | 2 | ||||
-rwxr-xr-x | pyLoadCore.py | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/module/config/core.xml b/module/config/core.xml index 6da85cf32..392309e1c 100644 --- a/module/config/core.xml +++ b/module/config/core.xml @@ -11,7 +11,7 @@ <key>ssl.key</key> </ssl> <webinterface> - <activated>True</activated> + <activated>False</activated> <host>0.0.0.0</host> <port>8000</port> <template>default</template> diff --git a/pyLoadCore.py b/pyLoadCore.py index fc196c587..0a30c1849 100755 --- a/pyLoadCore.py +++ b/pyLoadCore.py @@ -147,12 +147,9 @@ class Core(object): linkFile = self.config['general']['link_file'] packs = self.server_methods.get_queue() found = False - print linkFile for data in packs: - print data["package_name"] if data["package_name"] == linkFile: found = data["id"] - print "found", found break if found == False: pid = self.file_list.packager.addNewPackage(package_name=linkFile) |