openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #05644
Re: [Merge] lp:~mahfiaz/openlp/easislidesimport into lp:openlp
You need to close files you opened (line 565)
I think you can remove thinks like:
675 + # Don't know how to use Notations
676 + # data['notations']
And that is not the way you should do it:
833 + for i in range(length):
834 + # we iterate once more over lines
835 + thisline = lines[i]
When you have a list you can loop over it very simply:
my_list = [u'first line', u'second line', u'third line']
for entry in list:
print entry
--
https://code.launchpad.net/~mahfiaz/openlp/easislidesimport/+merge/46508
Your team OpenLP Core is subscribed to branch lp:openlp.
References