Skip to content

Commit

Permalink
pkgdev commit: fix old repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
radhermit committed Mar 12, 2021
1 parent 49dc963 commit adae6a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pkgdev/scripts/pkgdev_commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def old_repo(self):
f.write(f'masters = {self.repo.repo_id}\n')
os.makedirs(pjoin(repo_dir, 'profiles'))
with open(pjoin(repo_dir, 'profiles', 'repo_name'), 'w') as f:
f.write('{self.repo.repo_id}-old\n')
f.write(f'{self.repo.repo_id}-old\n')

repo_cls = partial(_HistoricalRepo, self.repo)
try:
Expand Down

0 comments on commit adae6a2

Please sign in to comment.