summaryrefslogtreecommitdiff
path: root/systemd/journal.py
diff options
context:
space:
mode:
Diffstat (limited to 'systemd/journal.py')
-rw-r--r--systemd/journal.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/systemd/journal.py b/systemd/journal.py
index e9f714e..cd83377 100644
--- a/systemd/journal.py
+++ b/systemd/journal.py
@@ -236,7 +236,7 @@ class Reader(_Reader):
super(Reader, self).add_match(arg)
def get_next(self, skip=1):
- """Return the next log entry as a dictionary.
+ r"""Return the next log entry as a dictionary.
Entries will be processed with converters specified during Reader
creation.
@@ -257,7 +257,7 @@ class Reader(_Reader):
return dict()
def get_previous(self, skip=1):
- """Return the previous log entry.
+ r"""Return the previous log entry.
Equivalent to get_next(-skip).