summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSelwin Ong <selwin.ong@gmail.com>2017-10-24 08:33:13 +0700
committerGitHub <noreply@github.com>2017-10-24 08:33:13 +0700
commit154488a427767c65d6417326aac41fa00a36e221 (patch)
tree288b0e98299b341e7e075034be921bc59aef5b30
parent43c9279c8d81ec6a60e9b78eb885c0cca66883f8 (diff)
parentdb491651f09e4b2b6bf4723462333895758bdf91 (diff)
downloadrq-154488a427767c65d6417326aac41fa00a36e221.tar.gz
Merge pull request #893 from greenmoon55/master
Fix README: fix badge and rename 'result' to 'job'
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index dfeee78..2a040c7 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.