1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
Eric Eastwood
6a7436b955 Add changelog 2025-03-21 19:02:58 -05:00
Eric Eastwood
cbcac0097e Catch other variant of missing icu dependency 2025-03-21 18:58:22 -05:00
2 changed files with 2 additions and 1 deletions

1
changelog.d/18261.misc Normal file
View File

@@ -0,0 +1 @@
Catch other error variant of missing `icu` dependency.

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