From ad84097547e063442ab9ec79df5ebb6a1f9e8747 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Tue, 24 Apr 2012 18:50:12 +0200 Subject: [PATCH] Added a generic except to catch other UNO problems. Fixes: https://launchpad.net/bugs/987568 --- openlp/core/ui/exceptionform.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openlp/core/ui/exceptionform.py b/openlp/core/ui/exceptionform.py index ed720581c..7ea3a5bc1 100644 --- a/openlp/core/ui/exceptionform.py +++ b/openlp/core/ui/exceptionform.py @@ -77,6 +77,8 @@ try: UNO_VERSION = node.getByName(u'ooSetupVersion') except ImportError: UNO_VERSION = u'-' +except: + UNO_VERSION = u'- (Possible non-standard UNO installation)' try: WEBKIT_VERSION = QtWebKit.qWebKitVersion() except AttributeError: