Skip to content

Commit

Permalink
Merge pull request #227 from DSD-DBS/fix-model-dir-name-escaping
Browse files Browse the repository at this point in the history
fix: Do not quote project name
  • Loading branch information
dominik003 authored Jan 15, 2024
2 parents d8493f1 + 65e9271 commit 614e12e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions t4c/backup.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ def copy_exported_files_into_git_repo(project_dir: pathlib.Path) -> None:
"/tmp/git",
)

model_dir = project_dir / urllib.parse.quote(
os.environ["T4C_PROJECT_NAME"]
)
model_dir = project_dir / os.environ["T4C_PROJECT_NAME"]

shutil.copytree(
model_dir,
Expand Down

0 comments on commit 614e12e

Please sign in to comment.