From 5eaed62bb6f6431a9972e0461c0e83d98ab55348 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 17 Sep 2017 21:09:12 +0200 Subject: [PATCH] python/tests/test_aubio_cmd.py: avoid unused variable --- python/tests/test_aubio_cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/test_aubio_cmd.py b/python/tests/test_aubio_cmd.py index af0e7367..6e834d15 100755 --- a/python/tests/test_aubio_cmd.py +++ b/python/tests/test_aubio_cmd.py @@ -12,7 +12,7 @@ class aubio_cmd(TestCase): def test_default_creation(self): try: assert self.a_parser.parse_args(['-V']).show_version - except SystemExit as e: + except SystemExit: url = 'https://bugs.python.org/issue9253' self.skipTest('subcommand became optional in py3, see %s' % url) -- 2.11.0