#491 fix nonetype error

pull/494/head
meisnate12 3 years ago
parent e9992ae694
commit 6df59157e4

@ -100,7 +100,9 @@ class Config:
changes = [] changes = []
def hooks(attr): def hooks(attr):
if attr in temp: if attr in temp:
changes.extend([w for w in util.get_list(temp.pop(attr), split=False) if w not in changes]) items = util.get_list(temp.pop(attr), split=False)
if items:
changes.extend([w for w in items if w not in changes])
hooks("collection_creation") hooks("collection_creation")
hooks("collection_addition") hooks("collection_addition")
hooks("collection_removal") hooks("collection_removal")

Loading…
Cancel
Save