diff options
author | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2018-03-02 22:38:18 +0100 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2018-03-02 22:38:18 +0100 |
commit | 44b4ad7d210097fdaed7dd94c5746b03f43592d3 (patch) | |
tree | a33bcdc02074dde13c8a286a02397d114f915090 | |
parent | 6eb1affe21d98097c539619af617f0bbe5b8abd1 (diff) |
build fix: disable gla11y for python 2.6
Things got massively worse with
f927fc06b8160c6db134b29dab510e2cd567e3f3 so disable for the moment
Change-Id: Ie8a03aa42d5c29bc6931c9c621d1b0427eeddab8
-rwxr-xr-x | bin/gla11y | 3 |
1 files changed, 3 insertions, 0 deletions
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 |