From 94909d21dbf033cbe34089782c430ec25b9ad0bc Mon Sep 17 00:00:00 2001 From: Jan Barta <55042barta@sstebrno.eu> Date: Thu, 2 Jun 2016 14:21:41 +0200 Subject: [PATCH] pylint: fix: multiple-statements Reviewed-By: Florence Blanc-Renaud --- ipaclient/setup.py.in | 3 ++- ipalib/setup.py.in | 3 ++- ipapython/setup.py.in | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ipaclient/setup.py.in b/ipaclient/setup.py.in index 23249dfd0..139b9dec6 100644 --- a/ipaclient/setup.py.in +++ b/ipaclient/setup.py.in @@ -36,7 +36,8 @@ Operating System :: Unix # BEFORE importing distutils, remove MANIFEST. distutils doesn't properly # update it when the contents of directories change. -if os.path.exists('MANIFEST'): os.remove('MANIFEST') +if os.path.exists('MANIFEST'): + os.remove('MANIFEST') def setup_package(): diff --git a/ipalib/setup.py.in b/ipalib/setup.py.in index 3bc6b7590..2af083413 100644 --- a/ipalib/setup.py.in +++ b/ipalib/setup.py.in @@ -36,7 +36,8 @@ Operating System :: Unix # BEFORE importing distutils, remove MANIFEST. distutils doesn't properly # update it when the contents of directories change. -if os.path.exists('MANIFEST'): os.remove('MANIFEST') +if os.path.exists('MANIFEST'): + os.remove('MANIFEST') def setup_package(): diff --git a/ipapython/setup.py.in b/ipapython/setup.py.in index af814cbe6..3a4d126b1 100755 --- a/ipapython/setup.py.in +++ b/ipapython/setup.py.in @@ -37,7 +37,8 @@ Operating System :: Unix # BEFORE importing distutils, remove MANIFEST. distutils doesn't properly # update it when the contents of directories change. -if os.path.exists('MANIFEST'): os.remove('MANIFEST') +if os.path.exists('MANIFEST'): + os.remove('MANIFEST') def setup_package():