openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #01738
Re: [Merge] lp:~m2j/openlp/work into lp:openlp
Review: Needs Fixing
MainWindow.recentFiles is a list []. It has a pop() method and does not have removeLast(). Please remove that change.
>From a python shell:
>>> test = [1,2,3,4]
>>> test.pop()
4
>>> test.removeLast()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'list' object has no attribute 'removeLast'
>>>
--
https://code.launchpad.net/~m2j/openlp/work/+merge/27326
Your team OpenLP Core is subscribed to branch lp:openlp.
References