diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-02-25 11:52:20 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-02-25 11:52:20 -0800 |
commit | 268b6c218c05389062ec4ed2268b6e4a98fd27f6 (patch) | |
tree | e97e1385e272b03417a9cbdb3524dba3895af5b7 /python | |
parent | 93e81ecbd5eb438ec927c2c66615bbfe9e2cc5db (diff) | |
download | fatcat-268b6c218c05389062ec4ed2268b6e4a98fd27f6.tar.gz fatcat-268b6c218c05389062ec4ed2268b6e4a98fd27f6.zip |
importer: hotfix for sentry config error
Diffstat (limited to 'python')
-rwxr-xr-x | python/fatcat_import.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_import.py b/python/fatcat_import.py index d9f049ae..f502d4ed 100755 --- a/python/fatcat_import.py +++ b/python/fatcat_import.py @@ -1019,7 +1019,7 @@ def main() -> None: # token is an optional kwarg (can be empty string, None, etc) token=os.environ.get(args.auth_var), ) - sentry_sdk.init(environment=args.env) + sentry_sdk.init() args.func(args) |