aboutsummaryrefslogtreecommitdiffstats
path: root/climl/interface.py
diff options
context:
space:
mode:
Diffstat (limited to 'climl/interface.py')
-rw-r--r--climl/interface.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/climl/interface.py b/climl/interface.py
index 549eb8b..5bafa2b 100644
--- a/climl/interface.py
+++ b/climl/interface.py
@@ -13,15 +13,15 @@ class HookError(Exception):
class HookAbortError(HookError):
'''
This exception is used to indicate to core of climl it should not mark
- email \Seen for now.
+ email processed for now.
'''
pass
-class HookAbortError(HookError, StopIteration):
+class HookStopIteration(HookError, StopIteration):
'''
Run this if your hook declares it does not want other hooks to process
- email.
+ email. The email will be marked processed.
'''
pass