← Back to team overview

openlp-core team mailing list archive

[Merge] lp:~raoul-snyman/openlp/song-maintenance into lp:openlp

 

Raoul Snyman has proposed merging lp:~raoul-snyman/openlp/song-maintenance into lp:openlp.

Requested reviews:
  OpenLP Core (openlp-core)
Related bugs:
  #697271 Songs maintain the list of songs topics authors
  https://bugs.launchpad.net/bugs/697271

For more details, see:
https://code.launchpad.net/~raoul-snyman/openlp/song-maintenance/+merge/45143

Fixed bug #697271
-- 
https://code.launchpad.net/~raoul-snyman/openlp/song-maintenance/+merge/45143
Your team OpenLP Core is requested to review the proposed merge of lp:~raoul-snyman/openlp/song-maintenance into lp:openlp.
=== modified file 'openlp/plugins/songs/forms/songmaintenanceform.py'
--- openlp/plugins/songs/forms/songmaintenanceform.py	2010-12-31 02:17:41 +0000
+++ openlp/plugins/songs/forms/songmaintenanceform.py	2011-01-04 16:56:56 +0000
@@ -109,7 +109,7 @@
                 author_name = QtGui.QListWidgetItem(author.display_name)
             else:
                 author_name = QtGui.QListWidgetItem(
-                    u' '.join(author.first_name, author.last_name))
+                    u' '.join([author.first_name, author.last_name]))
             author_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(author.id))
             self.AuthorsListWidget.addItem(author_name)
         if self.AuthorsListWidget.count() == 0:


Follow ups