Skip to content

Commit 5adfa75

Browse files
committedMay 4, 2017
Fix missing deps in return
1 parent 813b330 commit 5adfa75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎nikola/nikola.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1705,7 +1705,7 @@ def apply_shortcodes_uuid(self, data, shortcodes, filename=None, lang=None, with
17051705
replacement, _deps = shortcodes.apply_shortcodes(v, self.shortcode_registry, self, filename, lang=lang, with_dependencies=with_dependencies, extra_context=extra_context)
17061706
data.replace(k, replacement)
17071707
deps.extend(_deps)
1708-
return data
1708+
return data, deps
17091709

17101710
def _get_rss_copyright(self, lang, rss_plain):
17111711
if rss_plain:

0 commit comments

Comments
 (0)