From a9cb201d395ac64613fd06a028b61796a3f3075c Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Tue, 7 Aug 2012 11:07:03 +0200 Subject: [PATCH] PEP8ify. --- rq/worker.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rq/worker.py b/rq/worker.py index 67a2bed..d527957 100644 --- a/rq/worker.py +++ b/rq/worker.py @@ -250,8 +250,9 @@ class Worker(object): msg = 'Warm shut down requested.' self.log.warning(msg) - # If shutdown is requested in the middle of a job, wait until finish - # before shutting down + + # If shutdown is requested in the middle of a job, wait until + # finish before shutting down if self.state == 'busy': self._stopped = True self.log.debug('Stopping after current horse is finished. '