[Libreoffice-commits] core.git: solenv/qa
Michael Stahl
mstahl at redhat.com
Wed Oct 26 19:11:32 UTC 2016
solenv/qa/python/gbuildtoide.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit dad2f1440c1fed230da40927503e30267ce1fa84
Author: Michael Stahl <mstahl at redhat.com>
Date: Wed Oct 26 21:08:02 2016 +0200
fix "TabError: inconsistent use of tabs and spaces in indentation"
Change-Id: Iff27ff4a01dc8c20b01a6247554b6cc7195a2306
diff --git a/solenv/qa/python/gbuildtoide.py b/solenv/qa/python/gbuildtoide.py
index e189995..2d06102 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])
More information about the Libreoffice-commits
mailing list