mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-05-08 04:23:01 +02:00
Fix issue with series excluded becoming 'None' instead of ''.
This commit is contained in:
parent
61accdff32
commit
0e59651635
1 changed files with 1 additions and 1 deletions
|
|
@ -445,7 +445,7 @@ class Story(Configurable):
|
|||
self.in_ex_cludes[ie] = set_in_ex_clude(ies)
|
||||
|
||||
def join_list(self, key, vallist):
|
||||
return self.getConfig("join_string_"+key,u", ").replace(SPACE_REPLACE,' ').join(map(unicode, vallist))
|
||||
return self.getConfig("join_string_"+key,u", ").replace(SPACE_REPLACE,' ').join(map(unicode, [ x for x in vallist if x is not None ]))
|
||||
|
||||
def setMetadata(self, key, value, condremoveentities=True):
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue