← Back to team overview

openlp-core team mailing list archive

[Merge] lp:~raoul-snyman/openlp/bug-987568 into lp:openlp

 

Raoul Snyman has proposed merging lp:~raoul-snyman/openlp/bug-987568 into lp:openlp.

Requested reviews:
  OpenLP Core (openlp-core)
Related bugs:
  Bug #987568 in OpenLP: "OpenLP fails to start, Arch Linux, GNOME 3.4"
  https://bugs.launchpad.net/openlp/+bug/987568

For more details, see:
https://code.launchpad.net/~raoul-snyman/openlp/bug-987568/+merge/103326

Added a generic except to catch other UNO problems.
-- 
https://code.launchpad.net/~raoul-snyman/openlp/bug-987568/+merge/103326
Your team OpenLP Core is requested to review the proposed merge of lp:~raoul-snyman/openlp/bug-987568 into lp:openlp.
=== modified file 'openlp/core/ui/exceptionform.py'
--- openlp/core/ui/exceptionform.py	2012-04-02 00:19:16 +0000
+++ openlp/core/ui/exceptionform.py	2012-04-24 16:57:42 +0000
@@ -77,6 +77,8 @@
     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:


Follow ups