summaryrefslogtreecommitdiff
path: root/raven/breadcrumbs.py
diff options
context:
space:
mode:
Diffstat (limited to 'raven/breadcrumbs.py')
-rw-r--r--raven/breadcrumbs.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/raven/breadcrumbs.py b/raven/breadcrumbs.py
index 99ff013..912a0f6 100644
--- a/raven/breadcrumbs.py
+++ b/raven/breadcrumbs.py
@@ -27,11 +27,11 @@ logger = logging.getLogger('raven')
def event_payload_considered_equal(a, b):
return (
- a['type'] == b['type'] and
- a['level'] == b['level'] and
- a['message'] == b['message'] and
- a['category'] == b['category'] and
- a['data'] == b['data']
+ a['type'] == b['type']
+ and a['level'] == b['level']
+ and a['message'] == b['message']
+ and a['category'] == b['category']
+ and a['data'] == b['data']
)