diff options
Diffstat (limited to 'lib/wind/UnicodeData.py')
-rw-r--r-- | lib/wind/UnicodeData.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/wind/UnicodeData.py b/lib/wind/UnicodeData.py index dd6dfa745d9f..8ce3bcade279 100644 --- a/lib/wind/UnicodeData.py +++ b/lib/wind/UnicodeData.py @@ -50,7 +50,7 @@ def read(filename): continue f = l.split(';') key = int(f[0], 0x10) - if key in ret: + if key in ret: raise Exception('Duplicate key in UnicodeData') ret[key] = f[1:] ud.close() |