diff options
Diffstat (limited to 'python/fatcat_review.py')
-rwxr-xr-x | python/fatcat_review.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat_review.py b/python/fatcat_review.py index 7869eb60..05a00681 100755 --- a/python/fatcat_review.py +++ b/python/fatcat_review.py @@ -3,13 +3,13 @@ import argparse import sys -import raven +import sentry_sdk from fatcat_tools import authenticated_api from fatcat_tools.reviewers import DummyReviewBot # Yep, a global. Gets DSN from `SENTRY_DSN` environment variable -sentry_client = raven.Client() +sentry_client = sentry_sdk.init() def run_dummy(args: argparse.Namespace) -> None: |