summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMeredithAnya <meredith.a.heller@gmail.com>2017-11-03 14:43:14 -0700
committerGitHub <noreply@github.com>2017-11-03 14:43:14 -0700
commit6627e4fc730a6fb52ecdbb9dc0edf06689b7fbf1 (patch)
tree8e000f0b8e6f58e0574aac221880f258149aef7c
parent533138209744330794d2a335289f781f6637bd4b (diff)
downloadraven-6627e4fc730a6fb52ecdbb9dc0edf06689b7fbf1.tar.gz
use abspath (#1129)
-rw-r--r--docs/integrations/django.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/integrations/django.rst b/docs/integrations/django.rst
index 1bd634d..b39d692 100644
--- a/docs/integrations/django.rst
+++ b/docs/integrations/django.rst
@@ -28,7 +28,7 @@ Additional settings for the client are configured using the
'dsn': '___DSN___',
# If you are using git, you can also automatically configure the
# release based on the git info.
- 'release': raven.fetch_git_sha(os.path.dirname(os.pardir)),
+ 'release': raven.fetch_git_sha(os.path.abspath(os.pardir)),
}
Once you've configured the client, you can test it using the standard Django