diff options
author | nyamatongwe <devnull@localhost> | 2007-06-01 01:28:29 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-06-01 01:28:29 +0000 |
commit | f9a02492ca8f902ca349e60ce42dee4cadbd35c0 (patch) | |
tree | 56869be17724b4cac7916ecfc2e52c86d2c6252e | |
parent | bff5c376377f4c19a62e6a44eccda7dbe9deebaf (diff) | |
download | scintilla-mirror-f9a02492ca8f902ca349e60ce42dee4cadbd35c0.tar.gz |
Make run under Python 2.4.
-rw-r--r-- | include/HFacer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/HFacer.py b/include/HFacer.py index 8c780d51a..b3c8c2896 100644 --- a/include/HFacer.py +++ b/include/HFacer.py @@ -71,6 +71,6 @@ try: f.ReadFromFile("Scintilla.iface") Regenerate("Scintilla.h", printHFile, f) Regenerate("SciLexer.h", printLexHFile, f) - print "Maximum ID is", max(x for x in f.values if int(x) < 3000) + print "Maximum ID is", max([x for x in f.values if int(x) < 3000]) except: raise |