summaryrefslogtreecommitdiffstats
path: root/ipaclient
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 /ipaclient
parent22f4045f72daf182c44ce574291c0d8a7733713b (diff)
downloadfreeipa-94909d21dbf033cbe34089782c430ec25b9ad0bc.tar.gz
freeipa-94909d21dbf033cbe34089782c430ec25b9ad0bc.tar.xz
freeipa-94909d21dbf033cbe34089782c430ec25b9ad0bc.zip
pylint: fix: multiple-statements
Reviewed-By: Florence Blanc-Renaud <frenaud@redhat.com>
Diffstat (limited to 'ipaclient')
-rw-r--r--ipaclient/setup.py.in3
1 files changed, 2 insertions, 1 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():