summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodrigo Guzman <rodrigo.guzman@onbondstreet.com>2017-04-05 06:55:25 -0400
committerAshley Camba <ashwoods@gmail.com>2017-12-11 10:45:41 +0100
commit5971656e47ab4621da40f4b4082b42f33db92fef (patch)
treebe9e10dfddfb117f2a94206411d5491b0247f92b
parent98d4b6f08106b8e388bd9cfded697cd78e3073a9 (diff)
downloadraven-5971656e47ab4621da40f4b4082b42f33db92fef.tar.gz
fix processor docstrings
-rw-r--r--raven/processors.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/raven/processors.py b/raven/processors.py
index c5b3b41..59fccc7 100644
--- a/raven/processors.py
+++ b/raven/processors.py
@@ -66,8 +66,7 @@ class RemoveStackLocalsProcessor(Processor):
class SanitizeKeysProcessor(Processor):
"""
- Asterisk out things that look like passwords, credit card numbers,
- and API keys in frames, http, and basic extra data.
+ Asterisk out things that correspond to a configurable set of keys.
"""
MASK = '*' * 8
@@ -143,6 +142,10 @@ class SanitizeKeysProcessor(Processor):
class SanitizePasswordsProcessor(SanitizeKeysProcessor):
+ """
+ Asterisk out things that look like passwords, credit card numbers,
+ and API keys in frames, http, and basic extra data.
+ """
FIELDS = frozenset([
'password',
'secret',