Skip to content

Commit

Permalink
Tolerate more exceptions when can not import admix (#1367)
Browse files Browse the repository at this point in the history
  • Loading branch information
dachengx authored Apr 22, 2024
1 parent 37e043a commit 55c15eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion straxen/storage/rucio_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from rucio.common.exception import DataIdentifierNotFound

HAVE_ADMIX = True
except ImportError:
except (ImportError, AttributeError):
HAVE_ADMIX = False

export, __all__ = strax.exporter()
Expand Down

0 comments on commit 55c15eb

Please sign in to comment.