Skip to content
Snippets Groups Projects
Commit 8d00ad2e authored by Studer Gabriel's avatar Studer Gabriel
Browse files

Apply 2to3 to file not ending with .py

Executed command: 2to3-2.7 -n -w actions/ost-compare-structures
parent 0f693890
No related branches found
No related tags found
No related merge requests found
......@@ -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))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment