diff options
Diffstat (limited to 'unotest/source')
-rw-r--r-- | unotest/source/python/org/libreoffice/unotest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotest/source/python/org/libreoffice/unotest.py b/unotest/source/python/org/libreoffice/unotest.py index 743e1781de84..e3865fdc0b8e 100644 --- a/unotest/source/python/org/libreoffice/unotest.py +++ b/unotest/source/python/org/libreoffice/unotest.py @@ -265,7 +265,7 @@ def retryInvoke(connection, test): connection.postTest() except KeyboardInterrupt: raise # Ctrl+C should work - except: + except Exception: print("retryInvoke: caught exception") raise Exception("FAILED retryInvoke") |