Skip to content

Commit

Permalink
Fix missing deps in return
Browse files Browse the repository at this point in the history
  • Loading branch information
ralsina committed May 4, 2017
1 parent 813b330 commit 5adfa75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/nikola.py
Expand Up @@ -1705,7 +1705,7 @@ def apply_shortcodes_uuid(self, data, shortcodes, filename=None, lang=None, with
replacement, _deps = shortcodes.apply_shortcodes(v, self.shortcode_registry, self, filename, lang=lang, with_dependencies=with_dependencies, extra_context=extra_context)
data.replace(k, replacement)
deps.extend(_deps)
return data
return data, deps

def _get_rss_copyright(self, lang, rss_plain):
if rss_plain:
Expand Down

0 comments on commit 5adfa75

Please sign in to comment.