Skip to content

Commit

Permalink
Fix order of template paths (#1496)
Browse files Browse the repository at this point in the history
Signed-off-by: Mohammad Farzan <m2_farzan@yahoo.com>
  • Loading branch information
m2-farzan authored Jun 7, 2021
1 parent ff33477 commit b945cda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nbconvert/exporters/templateexporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ def _template_paths(self, prune=True, root_dirs=None):
except OSError:
pass

return self.extra_template_paths + additional_paths + paths
return paths + self.extra_template_paths + additional_paths

@classmethod
def get_compatibility_base_template_conf(cls, name):
Expand Down

0 comments on commit b945cda

Please sign in to comment.