From b945cda1a89e547e75bf0466332e7252dd0ba3d8 Mon Sep 17 00:00:00 2001 From: Mohammad Mostafa Farzan Date: Mon, 7 Jun 2021 04:36:54 +0430 Subject: [PATCH] Fix order of template paths (#1496) Signed-off-by: Mohammad Farzan --- nbconvert/exporters/templateexporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nbconvert/exporters/templateexporter.py b/nbconvert/exporters/templateexporter.py index 0d540eb18..623229889 100644 --- a/nbconvert/exporters/templateexporter.py +++ b/nbconvert/exporters/templateexporter.py @@ -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):