linuxmint / warpinator

Share files across the LAN
GNU General Public License v3.0
1.17k stars 80 forks source link

Fix NameError for 'sleep' #187

Closed FriedrichFroebel closed 10 months ago

FriedrichFroebel commented 10 months ago

Stopping the application would yield the following stacktrace:

2023-08-20 09:55:48,289::warpinator::DEBUG: sleep -- util.py (line 88)
Exception in thread NewThreadExecutor-factory-thread:
Traceback (most recent call last):
  File "/usr/lib/python3.10/threading.py", line 1016, in _bootstrap_inner
    self.run()
  File "/usr/lib/python3.10/threading.py", line 953, in run
    self._target(*self._args, **self._kwargs)
  File "/app/libexec/warpinator/util.py", line 89, in factory_thread_func
    sleep(.1)
NameError: name 'sleep' is not defined

This PR fixes this error.