diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-10-26 21:08:02 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-10-26 21:08:31 +0200 |
commit | dad2f1440c1fed230da40927503e30267ce1fa84 (patch) | |
tree | 1b893e400f8e38db2adf3fc2b508ac039a097564 /solenv | |
parent | 3803460589e6f158267315848728ccaba7d57275 (diff) |
fix "TabError: inconsistent use of tabs and spaces in indentation"
Change-Id: Iff27ff4a01dc8c20b01a6247554b6cc7195a2306
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/qa/python/gbuildtoide.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/qa/python/gbuildtoide.py b/solenv/qa/python/gbuildtoide.py index e18999514b04..2d061027ba03 100644 --- a/solenv/qa/python/gbuildtoide.py +++ b/solenv/qa/python/gbuildtoide.py @@ -29,7 +29,7 @@ class CheckGbuildToIde(unittest.TestCase): def test_gbuildtoide(self): os.chdir(os.path.join(os.environ['SRCDIR'], 'solenv', 'qa', 'python', 'selftest')) # make may find instdir/program/libfreebl3.so and fall over if that was - if 'LD_LIBRARY_PATH' in os.environ: + if 'LD_LIBRARY_PATH' in os.environ: del(os.environ['LD_LIBRARY_PATH']) # built with ASAN; prevent that make = os.environ['MAKE'] subprocess.check_call([make, 'gbuildtoide', 'WORKDIR=%s' % self.tempworkmixed]) |