From f0b30baa39180a1047da362eb1411157228d18b7 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sat, 31 Dec 2016 19:50:15 +0100 Subject: style: fix E225 violations E225: missing whitespace around operator Signed-off-by: Igor Gnatenko --- mesonbuild/modules/gnome.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mesonbuild/modules/gnome.py') diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index 95113a0..b7e5a8c 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -260,9 +260,9 @@ can not be used with the current version of glib-compiled-resources, due to link_command = ['-l%s' % lib.name] if isinstance(lib, build.SharedLibrary): libdir = os.path.join(state.environment.get_build_dir(), lib.subdir) - link_command += ['-L%s' %libdir] + link_command += ['-L%s' % libdir] if include_rpath: - link_command += ['-Wl,-rpath %s' %libdir] + link_command += ['-Wl,-rpath %s' % libdir] if depends: depends.append(lib) return link_command -- cgit v1.1