summaryrefslogtreecommitdiff
path: root/source4/heimdal
diff options
context:
space:
mode:
authorNoel Power <noel.power@suse.com>2018-07-27 14:26:35 +0100
committerAndrew Bartlett <abartlet@samba.org>2018-09-27 01:54:27 +0200
commite8fec94827c933041acd5b447eeeefd0b7b507ef (patch)
tree9cc2387a033f07eb455d2b80fdab7a817a9d1a8e /source4/heimdal
parentcddd54e8654c94dedd57c08af1987ce03212ce20 (diff)
downloadsamba-e8fec94827c933041acd5b447eeeefd0b7b507ef.tar.gz
PY3: fix "TabError: inconsistent use of tabs and spaces"
Signed-off-by: Noel Power <noel.power@suse.com> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/heimdal')
-rw-r--r--source4/heimdal/lib/wind/UnicodeData.py2
1 files changed, 1 insertions, 1 deletions
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()