* util/import_unicode.py: Add missing brackets around string for
python 3 support.
This commit is contained in:
parent
1ecd61a47a
commit
82f6d455bb
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2012-03-10 William Bittner <william.bittner@gmail.com>
|
||||||
|
|
||||||
|
* util/import_unicode.py: Add missing brackets around string for
|
||||||
|
python 3 support.
|
||||||
|
|
||||||
2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
|
2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
Fix efi chainloader on network root.
|
Fix efi chainloader on network root.
|
||||||
|
|
|
@ -135,7 +135,7 @@ for line in infile:
|
||||||
lastcombtype, lastmirrortype, \
|
lastcombtype, lastmirrortype, \
|
||||||
lastjoin)))
|
lastjoin)))
|
||||||
if lastcode - begincode + 1 >= 0x200:
|
if lastcode - begincode + 1 >= 0x200:
|
||||||
print "Too long range"
|
print ("Too long range")
|
||||||
raise
|
raise
|
||||||
begincode = curcode
|
begincode = curcode
|
||||||
lastcode = curcode
|
lastcode = curcode
|
||||||
|
|
Loading…
Reference in a new issue