From 3d04e5a150ea2a40cc9d531241fb6dbed21e8c7f Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Tue, 2 Apr 2019 15:26:35 -0700 Subject: modules/python: Remove spaces around keyword arguments just small style cleanups. --- mesonbuild/modules/python.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mesonbuild/modules/python.py') diff --git a/mesonbuild/modules/python.py b/mesonbuild/modules/python.py index 34fe5a5..2dba007 100644 --- a/mesonbuild/modules/python.py +++ b/mesonbuild/modules/python.py @@ -521,14 +521,14 @@ class PythonModule(ExtensionModule): pythonpath = self._get_win_pythonpath(name_or_path) if pythonpath is not None: name_or_path = pythonpath - python = ExternalProgram(name_or_path, silent = True) + python = ExternalProgram(name_or_path, silent=True) # Last ditch effort, python2 or python3 can be named python # on various platforms, let's not give up just yet, if an executable # named python is available and has a compatible version, let's use # it if not python.found() and name_or_path in ['python2', 'python3']: - python = ExternalProgram('python', silent = True) + python = ExternalProgram('python', silent=True) if not python.found(): if required: -- cgit v1.1