Skip to content

Commit

Permalink
fix: Do not quote project name
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik003 committed Jan 15, 2024
1 parent d8493f1 commit 65e9271
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 65e9271

Please sign in to comment.