From 523dfc06434c67d33c22ab76033405353689c994 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Wed, 6 Sep 2017 19:18:28 +0100 Subject: [PATCH] Fix some linter warnings --- cibuildwheel/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cibuildwheel/__main__.py b/cibuildwheel/__main__.py index c6c8d06f..1edc9505 100644 --- a/cibuildwheel/__main__.py +++ b/cibuildwheel/__main__.py @@ -1,5 +1,5 @@ from __future__ import print_function -import argparse, os, subprocess, sys, textwrap, shlex +import argparse, os, subprocess, sys, textwrap import cibuildwheel import cibuildwheel.linux, cibuildwheel.windows, cibuildwheel.macos @@ -78,7 +78,7 @@ def main(): try: environment = parse_environment(environment_config) except (EnvironmentParseError, ValueError) as e: - print('cibuildwheel: Malformed environment option "%s"' % key_value, file=sys.stderr) + print('cibuildwheel: Malformed environment option "%s"' % environment_config, file=sys.stderr) import traceback traceback.print_exc(None, sys.stderr) exit(2)