removing some extraneous output

This commit is contained in:
brent s 2018-07-22 20:31:05 -04:00
parent 5243da4d0a
commit aac603b4ee
1 changed files with 0 additions and 5 deletions

View File

@ -76,11 +76,6 @@ if os.path.isfile(cfg['arch']['path']):
up2date = True

if not up2date:
print('Downloading...')
os.makedirs(os.path.dirname(cfg['arch']['path']), exist_ok = True)
with open(cfg['arch']['path'], 'wb') as f, urlopen(iso) as u:
f.write(u.read())
else:
print('No need to download; we are up to date')

print('Done')