From aac603b4eea74dffdbe87d87a72785d6897dc2eb Mon Sep 17 00:00:00 2001 From: brent s Date: Sun, 22 Jul 2018 20:31:05 -0400 Subject: [PATCH] removing some extraneous output --- arch/relchk.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/arch/relchk.py b/arch/relchk.py index e2f62da..dfbf1f7 100755 --- a/arch/relchk.py +++ b/arch/relchk.py @@ -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')