<div dir="ltr">Hello Maintainer:<div><br></div><div><br>Came across this as well and did some digging to find the cause. Found that Python 3.9 removed the getiterator attribute and replaced it with iter. <br><br><br>To fix, in file "/usr/lib/python3/dist-packages/catfish_lib/Builder.py" at line 87 changed this line:<br><br>ele_widgets = tree.getiterator("object")<br><br>to<br><br>ele_widgets = tree.iter("object")<br><br>Also found one more line in the file needed to be changed (as I scanned to see if "getiterator" was mentioned anywhere else in the file) and it's this code at line 112:<br><br>ele_signals = tree.getiterator("signal")<br><br>Changed it to show:<br><br>ele_signals = tree.iter("signal")<br><br>Saved the original with .orig extension then saved changed file as Builder.py.<br><br>Tested catfish again from terminal and it started right up and functioned normally as I tested several searches. As I never did a patch diff before, if anyone can create a patch from my notes here feel free to do so.<br><br>Cheers!<div><br><div>-R</div></div></div></div>