From ac677c8d2dd1b70bf5d540a7289a0329de7b39b7 Mon Sep 17 00:00:00 2001 From: Kamil Páral Date: May 09 2014 15:04:01 +0000 Subject: don't mandate only stable update requests when using --bodhi-hack --- diff --git a/upgradepath.py b/upgradepath.py index babbf96..4c68318 100755 --- a/upgradepath.py +++ b/upgradepath.py @@ -588,9 +588,6 @@ def bodhi_hack_assume_tag(bodhi_update): bodhi = bodhi_utils.BodhiUtils() update = bodhi.query_update(bodhi_update) assert update is not None - assert update['request'] == 'stable', ('We only support stable requests, ' - 'not testing ones') - assert update['status'] != 'stable', 'This update is already stable' return update['release']['dist_tag'] + '-updates'