diff options
author | Neil <nyamatongwe@gmail.com> | 2019-04-11 06:47:04 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-04-11 06:47:04 +1000 |
commit | ea526b34712555ba4f667fa68298513f9d51f1c6 (patch) | |
tree | 1aa94b8b7581a5fc481fcac8186f467030d59336 /scripts/LexGen.py | |
parent | 4b044c6d0ebc3b004fbc42df102b1af0bee10333 (diff) | |
download | scintilla-mirror-ea526b34712555ba4f667fa68298513f9d51f1c6.tar.gz |
Updated required Python version due to differences in how imports work in 2.7.
Diffstat (limited to 'scripts/LexGen.py')
-rw-r--r-- | scripts/LexGen.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/LexGen.py b/scripts/LexGen.py index 6e11c529b..f804feb70 100644 --- a/scripts/LexGen.py +++ b/scripts/LexGen.py @@ -1,10 +1,10 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # LexGen.py - implemented 2002 by Neil Hodgson neilh@scintilla.org # Released to the public domain. # Regenerate the Scintilla source files that list all the lexers. # Should be run whenever a new lexer is added or removed. -# Requires Python 2.5 or later +# Requires Python 3.6 or later # Files are regenerated in place with templates stored in comments. # The format of generation comments is documented in FileGenerator.py. |