##// END OF EJS Templates
Fix glob pattern for nbconvert template files
Thomas Kluyver -
Show More
@@ -148,7 +148,7 b' def find_package_data():'
148 js_tests = glob('casperjs/*.*') + glob('casperjs/*/*')
148 js_tests = glob('casperjs/*.*') + glob('casperjs/*/*')
149
149
150 os.chdir(os.path.join(cwd, 'IPython', 'nbconvert'))
150 os.chdir(os.path.join(cwd, 'IPython', 'nbconvert'))
151 nbconvert_templates = [os.path.join(dirpath, '*')
151 nbconvert_templates = [os.path.join(dirpath, '*.*')
152 for dirpath, _, _ in os.walk('templates')]
152 for dirpath, _, _ in os.walk('templates')]
153
153
154 os.chdir(cwd)
154 os.chdir(cwd)
General Comments 0
You need to be logged in to leave comments. Login now