From e8fec94827c933041acd5b447eeeefd0b7b507ef Mon Sep 17 00:00:00 2001 From: Noel Power Date: Fri, 27 Jul 2018 14:26:35 +0100 Subject: PY3: fix "TabError: inconsistent use of tabs and spaces" Signed-off-by: Noel Power Reviewed-by: Andrew Bartlett --- source4/heimdal/lib/wind/UnicodeData.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/heimdal') diff --git a/source4/heimdal/lib/wind/UnicodeData.py b/source4/heimdal/lib/wind/UnicodeData.py index dd6dfa745d9..8ce3bcade27 100644 --- a/source4/heimdal/lib/wind/UnicodeData.py +++ b/source4/heimdal/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() -- cgit v1.2.1