From b78a5ee21f5bd9d07aa2ace7177ac0f49ee11c06 Mon Sep 17 00:00:00 2001 From: Lubomír Sedlář Date: May 31 2019 07:36:10 +0000 Subject: Bump check for bodhi client There should be no change on the client for what fedpkg is using. Fixes: https://pagure.io/fedpkg/issue/330 Signed-off-by: Lubomír Sedlář --- diff --git a/fedpkg/cli.py b/fedpkg/cli.py index e8ebe4a..d7b0872 100644 --- a/fedpkg/cli.py +++ b/fedpkg/cli.py @@ -84,7 +84,7 @@ def check_bodhi_version(): except pkg_resources.DistributionNotFound: raise rpkgError('bodhi-client < 2.0 is not supported.') major = int(dist.version.split('.', 1)[0]) - if major >= 4: + if major >= 5: raise rpkgError( 'This system has bodhi v{0}, which is unsupported.'.format(major))