diff options
Diffstat (limited to 'ishtar_common/libreoffice.py')
-rw-r--r-- | ishtar_common/libreoffice.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/libreoffice.py b/ishtar_common/libreoffice.py index 482364a73..7dbb36e30 100644 --- a/ishtar_common/libreoffice.py +++ b/ishtar_common/libreoffice.py @@ -202,7 +202,7 @@ class UnoCalc(UnoClient): if k.startswith("get"): try: print(k, getattr(validation, k)()) - except: + except (AttributeError, TypeError): pass def test_image(self): |