From c8c7aa6a9234828d94424620ce3288d4ea1585be Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 8 Jan 2017 14:41:34 +0100 Subject: [PATCH] setup.py: remove extra quotes --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d62f9ede..38be7c15 100755 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ if AUBIO_VERSION_STATUS is not None: include_dirs = [] library_dirs = [] -define_macros = [('AUBIO_VERSION', '"%s"' % __version__)] +define_macros = [('AUBIO_VERSION', '%s' % __version__)] extra_link_args = [] include_dirs += [ 'python/ext' ] -- 2.11.0