diff options
Diffstat (limited to 'python/fatcat_cleanup.py')
-rwxr-xr-x | python/fatcat_cleanup.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/python/fatcat_cleanup.py b/python/fatcat_cleanup.py index a7c80965..d8b2aea2 100755 --- a/python/fatcat_cleanup.py +++ b/python/fatcat_cleanup.py @@ -1,11 +1,17 @@ #!/usr/bin/env python3 import os, sys, argparse +import raven + from fatcat_tools import authenticated_api from fatcat_tools.importers import JsonLinePusher from fatcat_tools.cleanups import * +# Yep, a global. Gets DSN from `SENTRY_DSN` environment variable +sentry_client = raven.Client() + + def run_files(args): fmi = FileCleaner(args.api, dry_run_mode=args.dry_run, |