We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bab0fca commit bce2366Copy full SHA for bce2366
bin/lesson_initialize.py
@@ -12,11 +12,11 @@
12
'CONTRIBUTING.md',
13
'README.md',
14
'_config.yml',
15
- '_episodes/01-introduction.md',
16
- '_extras/about.md',
17
- '_extras/discuss.md',
18
- '_extras/figures.md',
19
- '_extras/guide.md',
+ os.path.join('_episodes', '01-introduction.md'),
+ os.path.join('_extras', 'about.md'),
+ os.path.join('_extras', 'discuss.md'),
+ os.path.join('_extras', 'figures.md'),
+ os.path.join('_extras', 'guide.md'),
20
'index.md',
21
'reference.md',
22
'setup.md',
@@ -39,7 +39,7 @@ def main():
39
# Create.
40
for path in BOILERPLATE:
41
shutil.copyfile(
42
- "bin/boilerplate/{}".format(path),
+ os.path.join('bin', 'boilerplate', path)
43
path
44
)
45
0 commit comments