disabled recursive mode on config watchdog
This commit is contained in:
parent
eb654ec963
commit
b923cf34a4
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ class Config(dict):
|
|||
self.observer = Observer()
|
||||
self.observer.schedule(event_handler,
|
||||
path='.',
|
||||
recursive=True
|
||||
recursive=False
|
||||
)
|
||||
self.observer.start()
|
||||
|
||||
|
|
Reference in a new issue