diff options
| author | Thibaut Horel <thibaut.horel@gmail.com> | 2014-10-30 00:18:29 -0400 |
|---|---|---|
| committer | Thibaut Horel <thibaut.horel@gmail.com> | 2014-10-30 00:18:29 -0400 |
| commit | 9c9c03a40ce7e362a9075aad5a3fe9a71933b8a9 (patch) | |
| tree | 6059015b80b459eb82cd79c70a2f95fe003be83e | |
| parent | fa5eae00a2ae369ee24b2394eff1723cc93409fc (diff) | |
| download | python-pushover-9c9c03a40ce7e362a9075aad5a3fe9a71933b8a9.tar.gz | |
Fix inconsistency in the doc
| -rw-r--r-- | README.rst | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. |
