From 52fdf4f04105f32ccb3b0d86152e0ebd0c33a811 Mon Sep 17 00:00:00 2001 From: Jon Calder Date: Fri, 13 Feb 2015 20:44:50 +0200 Subject: [PATCH] Correct typo for push_note() example in readme Under "Pushing a text note", the pb.push_note() example has a trailing fullstop outside the inverted commas which is obviously invalid syntax. --- readme.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.rst b/readme.rst index 272032b..755028a 100644 --- a/readme.rst +++ b/readme.rst @@ -69,7 +69,7 @@ Pushing a text note .. code:: python - push = pb.push_note("This is the title", "This is the body".) + push = pb.push_note("This is the title", "This is the body") ``push`` is a dictionary containing the data returned by the Pushbullet API.