Skip to content
Snippets Groups Projects
Commit e452a384 authored by Manuela Kuhn's avatar Manuela Kuhn
Browse files

Moved eventDetectors in seperate directory

parent 86ad90c2
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ class TaskProvider():
if self.config.has_key("eventDetectorType") and self.config["eventDetectorType"] == "inotifyx":
from InotifyxDetector import InotifyxDetector as EventDetector
from eventDetectors.InotifyxDetector import InotifyxDetector as EventDetector
# check format of config
if ( not self.config.has_key("monDir") or
......@@ -76,7 +76,7 @@ class TaskProvider():
elif self.config.has_key("eventDetectorType") and self.config["eventDetectorType"] == "watchdog":
from WatchdogDetector import WatchdogDetector as EventDetector
from eventDetectors.WatchdogDetector import WatchdogDetector as EventDetector
# check format of config
if ( not self.config.has_key("monDir") or
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment