From: Paul Brossier Date: Sun, 17 Sep 2017 19:09:12 +0000 (+0200) Subject: python/tests/test_aubio_cmd.py: avoid unused variable X-Git-Tag: 0.4.6~21^2 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=5eaed62bb6f6431a9972e0461c0e83d98ab55348;p=aubio.git python/tests/test_aubio_cmd.py: avoid unused variable --- 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)