Fix error with undefined var

Change-Id: Ie94b3330c061609e970dd8af8e289c8770870823
This commit is contained in:
Sagi Shnaidman 2019-03-28 11:51:05 +02:00
parent ceba106857
commit a7bc8dc4ab
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ def _write_repo(content, target, name=None):
filename = os.path.join(target, filename)
with open(filename, 'w') as f:
f.write(content)
print('Installed repo %s to %s' % (m.group(1), filename))
print('Installed repo %s to %s' % (name, filename))
def _validate_distro_repos(args):