Added a generic except to catch other UNO problems.

Fixes: https://launchpad.net/bugs/987568
This commit is contained in:
Raoul Snyman 2012-04-24 18:50:12 +02:00
parent 715e9b50a7
commit ad84097547
1 changed files with 2 additions and 0 deletions

View File

@ -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: