diff options
author | mathieui <mathieui@mathieui.net> | 2015-03-09 01:26:02 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2015-03-09 01:26:02 +0100 |
commit | cea4f3d189ab583b9b59d4556450b1460d1f9bb8 (patch) | |
tree | b15c5403347328ac79123563ebc9c0912b4bb2fd /plugins | |
parent | 28ee08cc2d1399e4a5090f8628073f0f61131d44 (diff) | |
download | poezio-cea4f3d189ab583b9b59d4556450b1460d1f9bb8.tar.gz poezio-cea4f3d189ab583b9b59d4556450b1460d1f9bb8.tar.bz2 poezio-cea4f3d189ab583b9b59d4556450b1460d1f9bb8.tar.xz poezio-cea4f3d189ab583b9b59d4556450b1460d1f9bb8.zip |
Fix the second example in the simple_notify plugin doc
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/simple_notify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/simple_notify.py b/plugins/simple_notify.py index f08fa259..9311efed 100644 --- a/plugins/simple_notify.py +++ b/plugins/simple_notify.py @@ -21,7 +21,7 @@ Second example: .. code-block:: ini [simple_notify] - command = echo \\<%{from}s\\> %{body}s >> some.fifo + command = echo \\<%(from)s\\> %(body)s >> some.fifo delay = 3 after_command = echo >> some.fifo |