summaryrefslogtreecommitdiff
path: root/src/python-systemd
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-04-14 18:37:38 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-04-14 18:38:32 -0400
commitee6349a7264e36310bc3a33c889763b396f0d674 (patch)
treebc5d3414d2a3530bee48ce4c8cc46584c52424ab /src/python-systemd
parenta1d4ca9d8a4a39a4bba7790d5c973cf8fec53152 (diff)
systemd-python: fix formatting in docstring
Diffstat (limited to 'src/python-systemd')
-rw-r--r--src/python-systemd/_reader.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/python-systemd/_reader.c b/src/python-systemd/_reader.c
index a49527fe4..3b36634e7 100644
--- a/src/python-systemd/_reader.c
+++ b/src/python-systemd/_reader.c
@@ -175,10 +175,10 @@ static PyObject* Reader_close(Reader *self, PyObject *args)
PyDoc_STRVAR(Reader_get_usage__doc__,
"get_usage() -> int\n\n"
- "Returns the total disk space currently used by journal"
- "files (in bytes). If `SD_JOURNAL_LOCAL_ONLY` was"
- "passed when opening the journal this value will only reflect"
- "the size of journal files of the local host, otherwise"
+ "Returns the total disk space currently used by journal\n"
+ "files (in bytes). If `SD_JOURNAL_LOCAL_ONLY` was\n"
+ "passed when opening the journal this value will only reflect\n"
+ "the size of journal files of the local host, otherwise\n"
"of all hosts.\n\n"
"This method invokes sd_journal_get_usage().\n"
"See man:sd_journal_get_usage(3).");
@@ -628,7 +628,8 @@ PyDoc_STRVAR(Reader_wait__doc__,
"then block forever.\n\n"
"Will return constants: NOP if no change; APPEND if new\n"
"entries have been added to the end of the journal; and\n"
- "INVALIDATE if journal files have been added or removed.");
+ "INVALIDATE if journal files have been added or removed.\n\n"
+ "See man:sd_journal_wait(3) for further discussion.");
static PyObject* Reader_wait(Reader *self, PyObject *args)
{
int r;