<div dir="ltr"><div dir="ltr">Oops, forgot to attach this to an issue, should be #495.</div><div><br></div><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Jun 8, 2020 at 10:50 AM Alex Page <<a href="mailto:a.t.page@gmail.com">a.t.page@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"># HG changeset patch<br>
# User Alex Page <<a href="mailto:a.t.page@gmail.com" target="_blank">a.t.page@gmail.com</a>><br>
# Date 1591627744 14400<br>
# Mon Jun 08 10:49:04 2020 -0400<br>
# Branch py3<br>
# Node ID 8831ed2fd44de57b6177ce0d47ebd5530b8f3256<br>
# Parent 64ee0e070f2298571c9b2656396c653a59e01b67<br>
Use items() rather than iteritems() in mainapp<br>
<br>
diff --git a/chirp/ui/mainapp.py b/chirp/ui/mainapp.py<br>
--- a/chirp/ui/mainapp.py<br>
+++ b/chirp/ui/mainapp.py<br>
@@ -1529,7 +1529,7 @@<br>
conf = config.get("memedit")<br>
conf.set_bool("hide_unused", action.get_active())<br>
else:<br>
- for editortype, editor in eset.editors.iteritems():<br>
+ for editortype, editor in eset.editors.items():<br>
if "memedit" in editortype:<br>
editor.set_hide_unused(action.get_active())<br>
<br>
</blockquote></div></div>