Browse Source

R Configuration DSN quote comment fix

Max Nanis 10 years ago
parent
commit
d8b86ad80a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/sentry/templates/sentry/partial/client_config/r.html

+ 1 - 1
src/sentry/templates/sentry/partial/client_config/r.html

@@ -10,7 +10,7 @@ library(logging.handlers)</pre>
 <p>{% trans "Create a Sentry handler and add it to a logger:" %}</p>
 
 <pre>rl &lt;- getLogger() # for example the root logger
-rl$addHandler(sentryHandler, dsn='{% if dsn %}{{ dsn }}{% else %}<strong>SENTRY_DSN</strong>{% endif %}'')
+rl$addHandler(sentryHandler, dsn='{% if dsn %}{{ dsn }}{% else %}<strong>SENTRY_DSN</strong>{% endif %}')
 </pre>
 
 <p>{% trans "Send events via the standard logging interface:" %}</p>