aboutsummaryrefslogtreecommitdiffstats
path: root/README.rst
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2014-10-30 00:18:29 -0400
committerThibaut Horel <thibaut.horel@gmail.com>2014-10-30 00:18:29 -0400
commit9c9c03a40ce7e362a9075aad5a3fe9a71933b8a9 (patch)
tree6059015b80b459eb82cd79c70a2f95fe003be83e /README.rst
parentfa5eae00a2ae369ee24b2394eff1723cc93409fc (diff)
downloadpython-pushover-9c9c03a40ce7e362a9075aad5a3fe9a71933b8a9.tar.gz
Fix inconsistency in the doc
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 24f7075..fa2332e 100644
--- a/README.rst
+++ b/README.rst
@@ -36,7 +36,7 @@ function with a valid application token. Thus, a typical use of the
from pushover import init, Client
init("<token>")
- client = Client("<user-key>").send_message("Hello!", title="Hello")
+ Client("<user-key>").send_message("Hello!", title="Hello")
You can also pass the ``api_token`` optional argument to ``Client`` to
initialize the module at the same time:
@@ -92,7 +92,7 @@ by simply doing:
from pushover import Client
- client = Client().send_message("Hello!", title="Hello")
+ Client().send_message("Hello!", title="Hello")
or ``pushover --title "Hello" "Hello!"`` from the command line.