summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2012-07-13 16:35:46 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2012-07-13 16:35:46 -0700
commit1dc1b9cbde78641eccb02b1ecc18db4fee4f02e3 (patch)
tree08ac1600fc143c7c9af65258d2ead8f42f99c68a
parent28227282891d7eb7e3600a458d0d8c7164f63dcb (diff)
downloadraven-1dc1b9cbde78641eccb02b1ecc18db4fee4f02e3.tar.gz
Don't escape %s in strings for no reason.
-rw-r--r--raven/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/raven/base.py b/raven/base.py
index cb70100..59c862f 100644
--- a/raven/base.py
+++ b/raven/base.py
@@ -109,7 +109,7 @@ class Client(object):
>>> 1/0
>>> except ZeroDivisionError:
>>> ident = client.get_ident(client.captureException())
- >>> print "Exception caught; reference is %%s" %% ident
+ >>> print "Exception caught; reference is %s" % ident
"""
logger = logging.getLogger('raven')
protocol_version = '2.0'