Layers: Fix new snappy implementation error

This commit is contained in:
Mike Auty
2023-03-06 00:13:47 +00:00
parent 56b899e738
commit 3791b21695
+1 -1
View File
@@ -39,7 +39,7 @@ try:
__snappy_uncompressed_length = lib_snappy.snappy_uncompressed_length
HAS_SNAPPY = True
except OSError:
except (AttributeError, OSError):
HAS_SNAPPY = False