mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-04 19:40:02 +03:00
[#2324] Update Watchdog
This commit is contained in:
parent
6eb084307d
commit
7d3d09f60b
@ -87,7 +87,7 @@ class Dashboard(FileSystemEventHandler):
|
||||
|
||||
if not self.observed and sys.platform == 'win32':
|
||||
logger.debug('Starting observer...')
|
||||
self.observed = cast(BaseObserver, self.observer).schedule(self, self.currentdir)
|
||||
self.observed = cast(BaseObserver, self.observer).schedule(self, self.currentdir) # type: ignore
|
||||
logger.debug('Done')
|
||||
|
||||
logger.info(f'{(sys.platform != "win32") and "Polling" or "Monitoring"} Dashboard "{self.currentdir}"')
|
||||
|
@ -337,9 +337,9 @@ class EDLogs(FileSystemEventHandler):
|
||||
|
||||
def on_created(self, event: 'FileSystemEvent') -> None:
|
||||
"""Watchdog callback when, e.g. client (re)started."""
|
||||
if not event.is_directory and self._RE_LOGFILE.search(basename(event.src_path)):
|
||||
if not event.is_directory and self._RE_LOGFILE.search(str(basename(event.src_path))):
|
||||
|
||||
self.logfile = event.src_path
|
||||
self.logfile = event.src_path # type: ignore
|
||||
|
||||
def worker(self) -> None: # noqa: C901, CCR001
|
||||
"""
|
||||
|
@ -1,6 +1,6 @@
|
||||
requests==2.32.3
|
||||
pillow==10.4.0
|
||||
watchdog==4.0.1
|
||||
watchdog==6.0.0
|
||||
simplesystray==0.1.0; sys_platform == 'win32'
|
||||
semantic-version==2.10.0
|
||||
# For manipulating folder permissions and the like.
|
||||
|
Loading…
x
Reference in New Issue
Block a user