1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

PY3: iterkeys -> keys

Signed-off-by: Noel Power <noel.power@suse.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Noel Power 2018-08-03 12:43:26 +01:00 committed by Andrew Bartlett
parent c6884138e4
commit d20e85d008

View File

@ -50,7 +50,7 @@ if len(sys.argv) != 3:
tables = rfc3454.read(sys.argv[1])
t2 = rfc4518.read()
for x in t2.iterkeys():
for x in t2.keys():
tables[x] = t2[x]
error_list = stringprep.get_errorlist()