Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tjstienstra committed Oct 12, 2023
1 parent f9fb258 commit 41e2d20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/process_tutorials.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def create_zip(required_files: dict[str, str]) -> None:
for file, new_location in required_files.items():
shutil.copy(os.path.join(TUTORIALS_DIR, file),
os.path.join(zip_dir, new_location))
for file in ("README.md", "tutorial_environment.yml"):
for file in ("README.md", "tutorials_environment.yml"):
shutil.copy(os.path.join(TUTORIALS_DIR, file), zip_dir)

# Create a zip file.
Expand Down

0 comments on commit 41e2d20

Please sign in to comment.