summaryrefslogtreecommitdiffstats
path: root/solenv
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-10-26 21:08:02 +0200
committerMichael Stahl <mstahl@redhat.com>2016-10-26 21:08:31 +0200
commitdad2f1440c1fed230da40927503e30267ce1fa84 (patch)
tree1b893e400f8e38db2adf3fc2b508ac039a097564 /solenv
parentsolenv: fix Windows build (diff)
downloadcore-dad2f1440c1fed230da40927503e30267ce1fa84.tar.gz
core-dad2f1440c1fed230da40927503e30267ce1fa84.zip
fix "TabError: inconsistent use of tabs and spaces in indentation"
Change-Id: Iff27ff4a01dc8c20b01a6247554b6cc7195a2306
Diffstat (limited to 'solenv')
-rw-r--r--solenv/qa/python/gbuildtoide.py2
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])