PY3: iterkeys -> keys

Signed-off-by: Noel Power <noel.power@suse.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
(cherry picked from Samba commit d20e85d008e1b7badbea5ada8b22639f7767a097)
This commit is contained in:
Noel Power
2018-08-03 12:43:26 +01:00
committed by Nico Williams
parent f7c2860a36
commit 965bb515ed

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()