← Back to team overview

openlp-core team mailing list archive

Re: [Merge] lp:~gerald-britton/openlp/newbugs into lp:openlp

 

Hi,
In my understanding there is a problem in patch line 81:
log.exception("open_ooo_file failed: %s", url)
url is Unicode and such it may contain non-ASCII characters. In that case you get a error, as it is not possible to convert it to a 8 bit string automatically. Rather write:
log.exception(u'open_ooo_file failed: %s', url)
-- 
https://code.launchpad.net/~gerald-britton/openlp/newbugs/+merge/62532
Your team OpenLP Core is subscribed to branch lp:openlp.


Follow ups

References