From e776111bc0b309df9aa62526645ad844e3ebbbcb Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Tue, 6 Mar 2018 22:02:14 -0300 Subject: [PATCH] build: Fix post-install script indentation Python best practices say that indentation should be a multiple of 4. --- meson_post_install.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/meson_post_install.py b/meson_post_install.py index 5c72c482e..f9119e1a7 100644 --- a/meson_post_install.py +++ b/meson_post_install.py @@ -8,8 +8,8 @@ gsettingsschemadir = os.path.join(sys.argv[1], 'glib-2.0', 'schemas') icondir = os.path.join(sys.argv[1], 'icons', 'hicolor') if not os.environ.get('DESTDIR'): - print('Compiling gsettings schemas...') - subprocess.call(['glib-compile-schemas', gsettingsschemadir]) + print('Compiling gsettings schemas...') + subprocess.call(['glib-compile-schemas', gsettingsschemadir]) - print('Update icon cache...') - subprocess.call(['gtk-update-icon-cache', '-f', '-t', icondir]) + print('Update icon cache...') + subprocess.call(['gtk-update-icon-cache', '-f', '-t', icondir])