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: pylint: fix: multiple-statements Reviewed-By: Florence Blanc-Renaud --- ipapython/setup.py.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ipapython') 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(): -- cgit