Skip to content

Commit

Permalink
Merge pull request #104 from bollwyvl/patch-2
Browse files Browse the repository at this point in the history
[slides] updating uninitialized resources in from_notebook_node
  • Loading branch information
minrk committed Sep 16, 2015
2 parents eb5273f + c6528ec commit ac88817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nbconvert/exporters/slides.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def _template_file_default(self):
output_mimetype = 'text/html'

def from_notebook_node(self, nb, resources=None, **kw):
self._init_resources(resources)
resources = self._init_resources(resources)
if 'reveal' not in resources:
resources['reveal'] = {}
resources['reveal']['url_prefix'] = self.reveal_url_prefix
Expand Down

0 comments on commit ac88817

Please sign in to comment.