summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Barta <55042barta@sstebrno.eu>2016-06-02 14:21:41 +0200
committerMartin Basti <mbasti@redhat.com>2016-06-21 13:51:28 +0200
commit94909d21dbf033cbe34089782c430ec25b9ad0bc (patch)
tree49b07cf21c7a2ea0c71771b07e9b4723984e0f1a
parent22f4045f72daf182c44ce574291c0d8a7733713b (diff)
pylint: fix: multiple-statements
Reviewed-By: Florence Blanc-Renaud <frenaud@redhat.com>
-rw-r--r--ipaclient/setup.py.in3
-rw-r--r--ipalib/setup.py.in3
-rwxr-xr-xipapython/setup.py.in3
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():