1
0

Catch other variant of missing icu dependency

This commit is contained in:
Eric Eastwood
2025-03-21 18:58:22 -05:00
parent 1efb826b54
commit cbcac0097e

View File

@@ -42,7 +42,7 @@ try:
import icu
USE_ICU = True
except ModuleNotFoundError:
except (ModuleNotFoundError, ImportError):
USE_ICU = False
from synapse.api.errors import StoreError