Skip to content

Commit ce40295

Browse files
committedMay 23, 2015
Not changing meta, but all values for keys in meta, which are themselves dicts.
1 parent 9a8101d commit ce40295

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

‎nikola/post.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,11 @@ def __repr__(self):
237237
m.update(utils.unicode_str(os.stat(self.source_path).st_mtime).encode('utf-8'))
238238
clean_meta = {}
239239
for k, v in self.meta.items():
240-
if v:
241-
clean_meta[k] = v
240+
sub_meta = {}
241+
clean_meta[k] = sub_meta
242+
for kk, vv in v.items():
243+
if vv:
244+
sub_meta[kk] = vv
242245
m.update(utils.unicode_str(json.dumps(clean_meta, cls=utils.CustomEncoder, sort_keys=True)).encode('utf-8'))
243246
return '<Post: {0} {1}>'.format(self.source_path, m.hexdigest())
244247

0 commit comments

Comments
 (0)
Please sign in to comment.