openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #07566
[Merge] lp:~googol-hush/openlp/trivial2 into lp:openlp
Andreas Preikschat has proposed merging lp:~googol-hush/openlp/trivial2 into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
For more details, see:
https://code.launchpad.net/~googol-hush/openlp/trivial2/+merge/55194
Hello,
- fixed forgotten applicationVersion
--
https://code.launchpad.net/~googol-hush/openlp/trivial2/+merge/55194
Your team OpenLP Core is requested to review the proposed merge of lp:~googol-hush/openlp/trivial2 into lp:openlp.
=== modified file 'openlp/core/ui/exceptionform.py'
--- openlp/core/ui/exceptionform.py 2011-03-24 19:04:02 +0000
+++ openlp/core/ui/exceptionform.py 2011-03-28 17:35:58 +0000
@@ -57,6 +57,7 @@
from openlp.core.lib import translate, SettingsManager
from openlp.core.lib.mailto import mailto
from openlp.core.lib.ui import UiStrings
+from openlp.core.utils import get_application_version
from exceptiondialog import Ui_ExceptionDialog
@@ -78,7 +79,7 @@
return QtGui.QDialog.exec_(self)
def _createReport(self):
- openlp_version = self.parent().applicationVersion[u'full']
+ openlp_version = get_application_version()
description = unicode(self.descriptionTextEdit.toPlainText())
traceback = unicode(self.exceptionTextEdit.toPlainText())
system = unicode(translate('OpenLP.ExceptionForm',
Follow ups