summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Streeter <chris@chrisstreeter.com>2016-05-05 08:20:56 -0700
committerMatt Robenolt <matt@ydekproductions.com>2016-05-05 09:20:56 -0600
commit76b29f1d41ff2e251f6630243a3a833651268463 (patch)
treeb61364a4d296c8b5c9acbf0cf046e13c7812929b
parent94fe077b5d0c00b0e88d87cb28b2450152b7725c (diff)
downloadraven-76b29f1d41ff2e251f6630243a3a833651268463.tar.gz
Fix a typo (#762)
-rw-r--r--raven/breadcrumbs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/raven/breadcrumbs.py b/raven/breadcrumbs.py
index 66e579f..389ce26 100644
--- a/raven/breadcrumbs.py
+++ b/raven/breadcrumbs.py
@@ -82,7 +82,7 @@ def _record_log_breadcrumb(logger, level, msg, *args, **kwargs):
if args:
formatted_msg = msg % args
# We do not want to include exc_info as argument because it often
- # lies (set to a contant value like 1 or True) or even if it's a
+ # lies (set to a constant value like 1 or True) or even if it's a
# tuple it will not be particularly useful for us as we cannot
# process it anyways.
kwargs.pop('exc_info', None)