From db491651f09e4b2b6bf4723462333895758bdf91 Mon Sep 17 00:00:00 2001 From: greenmoon55 Date: Sat, 21 Oct 2017 00:22:26 -0400 Subject: [PATCH] Fix README Fix badge and rename 'result' to 'job' --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dfeee780..2a040c78 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ easily. RQ requires Redis >= 2.7.0. [![Build status](https://travis-ci.org/nvie/rq.svg?branch=master)](https://secure.travis-ci.org/nvie/rq) -[![Downloads](https://img.shields.io/pypi/dm/rq.svg)](https://pypi.python.org/pypi/rq) +[![PyPI](https://img.shields.io/pypi/pyversions/rq.svg)](https://pypi.python.org/pypi/rq) [![Can I Use Python 3?](https://caniusepython3.com/project/rq.svg)](https://caniusepython3.com/project/rq) [![Coverage Status](https://img.shields.io/coveralls/nvie/rq.svg)](https://coveralls.io/r/nvie/rq) @@ -48,7 +48,7 @@ And enqueue the function call: ```python from my_module import count_words_at_url -result = q.enqueue(count_words_at_url, 'http://nvie.com') +job = q.enqueue(count_words_at_url, 'http://nvie.com') ``` For a more complete example, refer to the [docs][d]. But this is the essence.