mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-13 20:08:55 +00:00
Ignore OSError when checking for config file changes.
This commit is contained in:
parent
45ca493ecf
commit
471fbe576c
@ -110,8 +110,11 @@ class Config(object):
|
||||
|
||||
changed = False
|
||||
for file in self._watched_files:
|
||||
if os.stat(file).st_mtime != self._watched_files[file]:
|
||||
changed = True
|
||||
try:
|
||||
if os.stat(file).st_mtime != self._watched_files[file]:
|
||||
changed = True
|
||||
except OSError:
|
||||
continue
|
||||
if changed:
|
||||
self.read_config()
|
||||
for section in self._override_config:
|
||||
|
Loading…
Reference in New Issue
Block a user