summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/HotFolder.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hooks/HotFolder.py')
-rw-r--r--module/plugins/hooks/HotFolder.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/HotFolder.py b/module/plugins/hooks/HotFolder.py
index 1e320b87c..ee1031ad5 100644
--- a/module/plugins/hooks/HotFolder.py
+++ b/module/plugins/hooks/HotFolder.py
@@ -68,7 +68,7 @@ class HotFolder(Hook):
f.write(content)
f.close()
- self.core.server_methods.add_package(f.name, [f.name], 1)
+ self.core.api.addPackage(f.name, [f.name], 1)
for f in listdir(self.getConfig("folder")):
path = join(self.getConfig("folder"), f)
@@ -80,6 +80,6 @@ class HotFolder(Hook):
move(path, newpath)
self.log.info(_("Added %s from HotFolder") % f)
- self.core.server_methods.add_package(f, [newpath], 1)
+ self.core.api.addPackage(f, [newpath], 1)
\ No newline at end of file