[Libreoffice-commits] core.git: bin/gla11y

Thorsten Behrens Thorsten.Behrens at CIB.de
Fri Mar 2 21:40:05 UTC 2018


 bin/gla11y |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 44b4ad7d210097fdaed7dd94c5746b03f43592d3
Author: Thorsten Behrens <Thorsten.Behrens at CIB.de>
Date:   Fri Mar 2 22:38:18 2018 +0100

    build fix: disable gla11y for python 2.6
    
    Things got massively worse with
    f927fc06b8160c6db134b29dab510e2cd567e3f3 so disable for the moment
    
    Change-Id: Ie8a03aa42d5c29bc6931c9c621d1b0427eeddab8

diff --git a/bin/gla11y b/bin/gla11y
index 13f1c8e98b97..443e4e774760 100755
--- a/bin/gla11y
+++ b/bin/gla11y
@@ -38,6 +38,9 @@ except ImportError:
     import xml.etree.ElementTree as ET
     lxml = False
 
+if sys.version_info < (2,7):
+    exit()
+
 progname = os.path.basename(sys.argv[0])
 suppressions = {}
 gen_suppr = None


More information about the Libreoffice-commits mailing list