← Back to team overview

openlp-core team mailing list archive

Re: [Merge] lp:~googol/openlp/bug-805088 into lp:openlp

 

Review: Needs Fixing

@Tim, he's sorting them according to the order they are found.

@Andreas, just be careful when you add the closing version to the bottom of the page, you need to do it in reverse order.

49	+ raw_tags = [tag[0] for tag in raw_tags]
50	+ html_tags = [tag[0] for tag in html_tags]

raw_tags = map(lambda tag: tag[0], raw_tags)
html_tags = map(lambda tag: tag[0], html_tags)


-- 
https://code.launchpad.net/~googol/openlp/bug-805088/+merge/75905
Your team OpenLP Core is subscribed to branch lp:openlp.


References