From 6ddac481c0785037d419809951e65ed12d27c822 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Thu, 20 Feb 2020 16:18:51 -0500 Subject: [PATCH] Fix typo --- cibuildwheel/linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cibuildwheel/linux.py b/cibuildwheel/linux.py index c84026be..473c0d6e 100644 --- a/cibuildwheel/linux.py +++ b/cibuildwheel/linux.py @@ -54,7 +54,7 @@ def get_python_configurations(build_selector): configurations.append(c) if pm == "i686": if c.identifier.endswith('i686'): - configuration.append(c) + configurations.append(c) elif pm == "aarch64": if c.identifier.endswith('aarch64'): configurations.append(c)