diff options
| author | Jan Barta <55042barta@sstebrno.eu> | 2016-06-02 14:21:41 +0200 |
|---|---|---|
| committer | Martin Basti <mbasti@redhat.com> | 2016-06-21 13:51:28 +0200 |
| commit | 94909d21dbf033cbe34089782c430ec25b9ad0bc (patch) | |
| tree | 49b07cf21c7a2ea0c71771b07e9b4723984e0f1a /ipapython | |
| parent | 22f4045f72daf182c44ce574291c0d8a7733713b (diff) | |
| download | freeipa-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 'ipapython')
| -rwxr-xr-x | ipapython/setup.py.in | 3 |
1 files changed, 2 insertions, 1 deletions
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(): |
