This commit is contained in:
emrekgn 2016-08-04 18:11:39 +03:00
commit 8550ba2d9e

View file

@ -14,10 +14,8 @@ class FileEventHandler(FileSystemEventHandler):
def process(self, event):
if event.src_path != self.path[:-1]:
if event.event_type in ('created', 'modified', 'moved'):
plu_path = event.src_path
if event.event_type == 'moved':
plu_path = event.dest_path
if event.event_type == 'moved':
plu_path = event.dest_path
result = Commander().set_event([None, 'load', '-p', plu_path.replace(self.path, '')])
if result is True and System.Ahenk.is_running() is True:
os.kill(int(System.Ahenk.get_pid_number()), signal.SIGALRM)
@ -27,5 +25,6 @@ class FileEventHandler(FileSystemEventHandler):
os.kill(int(System.Ahenk.get_pid_number()), signal.SIGALRM)
def on_any_event(self, event):
if event.is_directory:
self.process(event)