mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 04:52:48 +02:00
Merge branch 'master' of https://github.com/cbhaley/calibre
This commit is contained in:
commit
8e98cb061f
1 changed files with 1 additions and 1 deletions
|
|
@ -650,7 +650,7 @@ def do_node_for(self, prog):
|
|||
res = getattr(self.parent_book, f, f)
|
||||
if res is not None:
|
||||
if not isinstance(res, list):
|
||||
res = res.split(',')
|
||||
res = [r.strip() for r in res.split(',') if r.strip()]
|
||||
ret = ''
|
||||
for x in res:
|
||||
self.locals[v] = x
|
||||
|
|
|
|||
Loading…
Reference in a new issue