summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKash Lingat <klingat@cendyn.com>2018-04-24 10:35:47 -0700
committerAshley Camba <ashwoods@gmail.com>2018-05-02 19:33:55 +0200
commitf4f512d09baaec34621744cc604acf92b5fd312a (patch)
treead1c3598e01d8669daf45aff5eddd07864c5a22e
parent2c4ed64beecf9af4b45d4028eae7d540fa8df767 (diff)
downloadraven-f4f512d09baaec34621744cc604acf92b5fd312a.tar.gz
Add missing closing quote around example
-rw-r--r--docs/integrations/logging.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/integrations/logging.rst b/docs/integrations/logging.rst
index ed7342c..106a17b 100644
--- a/docs/integrations/logging.rst
+++ b/docs/integrations/logging.rst
@@ -120,7 +120,7 @@ capturing for all messages::
Passing tags and user context is also available through extra::
logger.error('There was an error, with user context and tags'), extra={
- 'user': {'email': 'test@test.com},
+ 'user': {'email': 'test@test.com'},
'tags': {'database': '1.0'},
})