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. _______________________________________________ Mailing list: https://launchpad.net/~openlp-core Post to : [email protected] Unsubscribe : https://launchpad.net/~openlp-core More help : https://help.launchpad.net/ListHelp

