openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #03024
[Merge] lp:~trb143/openlp/bugfixes into lp:openlp
Tim Bentley has proposed merging lp:~trb143/openlp/bugfixes into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
Fix crash on theme importing
--
https://code.launchpad.net/~trb143/openlp/bugfixes/+merge/33949
Your team OpenLP Core is requested to review the proposed merge of lp:~trb143/openlp/bugfixes into lp:openlp.
=== modified file 'openlp/core/theme/theme.py'
--- openlp/core/theme/theme.py 2010-07-27 09:32:52 +0000
+++ openlp/core/theme/theme.py 2010-08-27 18:55:55 +0000
@@ -204,7 +204,7 @@
val = element_text
if (element.tag.find(u'Color') > 0 or
(element.tag.find(u'BackgroundParameter') == 0 and
- isinstance(int, val))):
+ isinstance(val, int))):
# convert to a wx.Colour
if not delphi_color_change:
val = QtGui.QColor(
Follow ups