stupid me
This commit is contained in:
parent
03f6730ac5
commit
c11be60cab
|
@ -82,7 +82,7 @@ for dirname, subdirlist, mdlist in os.walk('.'):
|
||||||
#post[prop] = meta.get(prop, None)
|
#post[prop] = meta.get(prop, None)
|
||||||
prop_raw = meta.get(prop, None)
|
prop_raw = meta.get(prop, None)
|
||||||
if prop_dict.get("list", False) and post[prop]:
|
if prop_dict.get("list", False) and post[prop]:
|
||||||
post[prop] = [{"name": word, "slug": slugify(word) for word in prop_raw.split(',')]
|
post[prop] = [{"name": word, "slug": slugify(word)} for word in prop_raw.split(',')]
|
||||||
for item in post[prop]:
|
for item in post[prop]:
|
||||||
slug = item["slug"]
|
slug = item["slug"]
|
||||||
if slug in posts_prop_index[prop]:
|
if slug in posts_prop_index[prop]:
|
||||||
|
|
Loading…
Reference in New Issue