From c487f6b0e2573dfae6335fe177b24ab74479ed56 Mon Sep 17 00:00:00 2001 From: David Boddie Date: Fri, 1 Mar 2019 23:34:47 +0100 Subject: [PATCH] Fix flake8 warnings --- build-aux/meson/postinstall.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-aux/meson/postinstall.py b/build-aux/meson/postinstall.py index bf964f5..11b022a 100755 --- a/build-aux/meson/postinstall.py +++ b/build-aux/meson/postinstall.py @@ -10,7 +10,8 @@ destdir = environ.get('DESTDIR', '') # Package managers set this so we don't need to run if not destdir: print('Updating icon cache...') - call(['gtk-update-icon-cache', '-qtf', path.join(datadir, 'icons', 'hicolor')]) + call(['gtk-update-icon-cache', '-qtf', + path.join(datadir, 'icons', 'hicolor')]) print('Updating desktop database...') call(['update-desktop-database', '-q', path.join(datadir, 'applications')])