diff --git a/jenkins/scripts/pypi-extract-universal.py b/jenkins/scripts/pypi-extract-universal.py index e4fd7b8398..293f6add14 100644 --- a/jenkins/scripts/pypi-extract-universal.py +++ b/jenkins/scripts/pypi-extract-universal.py @@ -20,7 +20,7 @@ universal = False setup_cfg = ConfigParser.SafeConfigParser() setup_cfg.read("setup.cfg") -if setup_cfg.has_section("wheel"): +if setup_cfg.has_option("wheel", "universal"): universal = setup_cfg.getboolean("wheel", "universal") if universal: print("py2.py3")