summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Boyer <jwboyer@redhat.com>2012-05-09 13:21:14 -0400
committerJosh Boyer <jwboyer@redhat.com>2012-05-09 13:21:14 -0400
commit2dd6a4e34b7b623d539140e87658cbe020203288 (patch)
treef78a66a5322c78a0a788322e2bdc3363c9369820
parent549adcddfda7ffeeed2e4c07a38340c29b69da7f (diff)
downloadkoji-bisect-2dd6a4e34b7b623d539140e87658cbe020203288.tar.gz
koji-bisect-2dd6a4e34b7b623d539140e87658cbe020203288.tar.xz
koji-bisect-2dd6a4e34b7b623d539140e87658cbe020203288.zip
Give the user a hint as to what to do
Tell them the current build is available for install
-rwxr-xr-xkoji-bisect.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/koji-bisect.py b/koji-bisect.py
index a8b734a..0d43888 100755
--- a/koji-bisect.py
+++ b/koji-bisect.py
@@ -380,7 +380,10 @@ if __name__ == "__main__":
bisect_data['current'] = builds_left[len(builds_left)/2]
os.makedirs('downloads/%s' % bisect_data['current'])
- download_build(session, builds_left[len(builds_left)/2], 'x86_64')
+ download_build(session, bisect_data['current'], 'x86_64')
+ print "-------------------------------------------------------"
+ print "%s is now available for install." % bisect_data['current']
+
bisect_save(bisect_data)