From bea7634b479cfc0267556817d0c7af54f62f7881 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 14 Dec 2014 19:59:37 -0800 Subject: [PATCH] Fix PyLint --- homeassistant/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/__init__.py b/homeassistant/__init__.py index 88066bca33e..887ec74c68e 100644 --- a/homeassistant/__init__.py +++ b/homeassistant/__init__.py @@ -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)