Default DSN is incorrect

When retrieving a projects DSN from the projects Client Keys data, the DSN which is provided contains an extra backslash. e.g.

http://“key”@sentry.“company”:9000//3

This will cause a bad DSN error as it should be:

http://“key”@sentry.“company”:9000/3

Has anyone else noticed this fault?

HI, does this thread help? https://github.com/getsentry/sentry-python/issues/87

It does, during initial setup I had a trailing slash after the root URL! Thanks, for that.