1
mirror of https://github.com/home-assistant/core synced 2024-08-02 23:40:32 +02:00

Fix PyLint

This commit is contained in:
Paulus Schoutsen 2014-12-14 19:59:37 -08:00
parent 344ce6ee4d
commit bea7634b47

View File

@ -288,7 +288,7 @@ def create_worker_pool(thread_count=POOL_NUM_THREAD):
for start, job in current_jobs:
_LOGGER.warning("WorkerPool:Current job from %s: %s",
util.datetime_to_str(start), job)
util.datetime_to_str(start), job)
return util.ThreadPool(thread_count, job_handler, busy_callback)