Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
Better error reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
why-not-try-calmer committed Feb 15, 2023
1 parent 231f41f commit 634f59f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytransifex/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def extract_files(input_dir: Path) -> tuple[list[Path], list[str], str]:
files = list(Path.iterdir(input_dir))
slugs = path_to_slug(files)
files_status_report = "\n".join(
(f"{slug} => {file}" for slug, file in zip(slugs, files))
(f"file:{file} => slug:{slug}" for slug, file in zip(slugs, files))
)
return (files, slugs, files_status_report)

Expand Down

0 comments on commit 634f59f

Please sign in to comment.