Skip to content

Commit

Permalink
Merge pull request #228 from DSD-DBS/fix-import-project-name-encoding
Browse files Browse the repository at this point in the history
fix: Don't encode `@` in project name
  • Loading branch information
MoritzWeber0 authored Feb 16, 2024
2 parents 614e12e + d34a2bf commit cdf5ec7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t4c/backup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def run_importer_script() -> None:
"-repoName",
os.environ["T4C_REPO_NAME"],
"-projectName",
urllib.parse.quote(os.environ["T4C_PROJECT_NAME"]),
urllib.parse.quote(os.environ["T4C_PROJECT_NAME"], safe="@"),
"-importerLogin" if is_capella_5_x_x() else "-repositoryLogin",
os.environ["T4C_USERNAME"],
"-importerPassword" if is_capella_5_x_x() else "-repositoryPassword",
Expand Down

0 comments on commit cdf5ec7

Please sign in to comment.