Skip to content

Commit

Permalink
repo name may be read as a number from the yaml config
Browse files Browse the repository at this point in the history
  • Loading branch information
cbosdo committed Jan 10, 2023
1 parent 549bc2c commit 145c760
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion obs_maven/repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

class Repo:
def __init__(self, name, cache_path, base_url, project, repository, custom_url=None):
self.cache_dir = os.path.join(cache_path, name)
self.cache_dir = os.path.join(cache_path, str(name))
self.base_url = base_url
self.custom_url = custom_url
if not custom_url:
Expand Down

0 comments on commit 145c760

Please sign in to comment.