Merge 6729214fe9c79ade0e580fb4c92f819c812b9f7c into 0f4cab45f2524c4588e299ecb29cf6b0bf176345

This commit is contained in:
ckanibal 2019-11-07 14:32:39 +01:00 committed by GitHub
commit 01718a3ec3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -175,8 +175,9 @@ class Handler(FileSystemEventHandler):
def __init__(self, args): def __init__(self, args):
self.args = args self.args = args
self.isWaiting = False self.isWaiting = False
self.timer = threading.Timer(0.5, self.doTheWork)
self.lock = threading.Lock() self.lock = threading.Lock()
self.timer = threading.Timer(0.5, self.doTheWork)
self.timer.start()
def on_created(self, event): def on_created(self, event):
self.handle(event) self.handle(event)