diff --git a/actions/ost-compare-structures b/actions/ost-compare-structures index 8ae9ff19e36718f38b319b40e79fea337d883a1f..41f1080ce1db8d16b5134344e6a74205733f89fb 100644 --- a/actions/ost-compare-structures +++ b/actions/ost-compare-structures @@ -513,7 +513,7 @@ def _RevertChainNames(ent): used_names[original_name] += 1 for chain in ent.chains: editor.RenameChain(chain, reverted_chains[chain.name[:-len(suffix)]]) - rev_out = ["%s -> %s" % (on, nn) for on, nn in reverted_chains.iteritems()] + rev_out = ["%s -> %s" % (on, nn) for on, nn in reverted_chains.items()] ost.LogInfo("Reverted chains: %s" % ", ".join(rev_out))