openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #03168
[Merge] lp:~raoul-snyman/openlp/bug-fixes into lp:openlp
Raoul Snyman has proposed merging lp:~raoul-snyman/openlp/bug-fixes into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
Fix for bug #621695
--
https://code.launchpad.net/~raoul-snyman/openlp/bug-fixes/+merge/34513
Your team OpenLP Core is requested to review the proposed merge of lp:~raoul-snyman/openlp/bug-fixes into lp:openlp.
=== modified file 'openlp/plugins/bibles/lib/csvbible.py'
--- openlp/plugins/bibles/lib/csvbible.py 2010-07-27 09:32:52 +0000
+++ openlp/plugins/bibles/lib/csvbible.py 2010-09-03 05:34:44 +0000
@@ -51,9 +51,9 @@
if u'booksfile' not in kwargs:
raise KeyError(u'You have to supply a file to import books from.')
self.booksfile = kwargs[u'booksfile']
- if u'versesfile' not in kwargs:
+ if u'versefile' not in kwargs:
raise KeyError(u'You have to supply a file to import verses from.')
- self.versesfile = kwargs[u'versesfile']
+ self.versesfile = kwargs[u'versefile']
QtCore.QObject.connect(Receiver.get_receiver(),
QtCore.SIGNAL(u'bibles_stop_import'), self.stop_import)
Follow ups