← Back to team overview

openlp-core team mailing list archive

Re: [Merge] lp:~smpettit/openlp/settings-export into lp:openlp

 

Forget about the crash, it was caused by another branch I tested.

The following string does not sound right:
"OpenLP will now close.  Imported settings will take place the next time you start OpenLP"

I'd say
"OpenLP will now close. Imported settings will be applied the next time you start OpenLP."
But better let Raoul check the strings.

Also you have a try/except in your code.
Do not just do:
try:
    bla
except:
    bla

Always do (example):
try:
    bla
except ValueError:
    bla
-- 
https://code.launchpad.net/~smpettit/openlp/settings-export/+merge/72880
Your team OpenLP Core is subscribed to branch lp:openlp.


References