summaryrefslogtreecommitdiff
path: root/python/mailutils/sieve.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/mailutils/sieve.py')
-rw-r--r--python/mailutils/sieve.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/mailutils/sieve.py b/python/mailutils/sieve.py
index 75e91ba68..38cbf6a0b 100644
--- a/python/mailutils/sieve.py
+++ b/python/mailutils/sieve.py
@@ -53,7 +53,7 @@ class Machine:
raise SieveMachineError (status)
def compile (self, name):
- """Compile the sieve script from the file NAME."""
+ """Compile the sieve script from the file 'name'."""
status = sieve.compile (self.mach, name)
if status:
raise SieveMachineError (status)
@@ -73,7 +73,7 @@ class Machine:
def message (self, msg):
"""Execute the code from the given instance of sieve machine
- over the MSG."""
+ over the 'msg'."""
status = sieve.message (self.mach, msg.msg)
if status:
raise SieveMachineError (status)

Return to:

Send suggestions and report system problems to the System administrator.