1
0
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:
Jeremy 2015-02-02 15:00:56 -07:00
parent 45ca493ecf
commit 471fbe576c

View File

@ -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: