From fea54d9b3b8dd38e6c7cd5324e1aa0f2a1aa082d Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Tue, 14 Oct 2014 09:14:25 -0400 Subject: [PATCH] fix comment formatting --- contents/writing/about/python-redis-queue-workers/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contents/writing/about/python-redis-queue-workers/index.md b/contents/writing/about/python-redis-queue-workers/index.md index 0f79a49..6665254 100644 --- a/contents/writing/about/python-redis-queue-workers/index.md +++ b/contents/writing/about/python-redis-queue-workers/index.md @@ -35,7 +35,8 @@ def process(job_id, job_data): def main(client, processing_queue, all_queue): while True: - # try to fetch a job id from ":jobs" and push it to ":jobs" + # try to fetch a job id from ":jobs" + # and push it to ":jobs" job_id = client.brpoplpush(all_queue, processing_queue) if not job_id: continue