Skip to content

Commit

Permalink
Another level of dict also in merge_domaindata()
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeier committed Apr 9, 2024
1 parent 4bb0f5e commit b743389
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sphinx_last_updated_by_git.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def clear_doc(self, docname):
self.timestamps.pop(docname, None)

def merge_domaindata(self, docnames, otherdata):
for k, v in otherdata.items():
for k, v in otherdata['timestamps'].items():
if k in docnames:
self.timestamps[k] = v

Expand Down

0 comments on commit b743389

Please sign in to comment.