processcp.py uses unicodecsv, which is dropped in F37 because the standard csv library now supports unicode.
A straight s/unicodecsv/csv/g doesn't work, so we'll need to poke at this a bit so that it works on both F37 and F36. (Or just say "you must run F37 or later in order to use this script." That's not a terrible outcome either)
s/unicodecsv/csv/g
I hit this today - +1 for 'You must run F37 or later' - can easily be done in a container
Commit b3be13f3 fixes this issue
As noted above, I've fixed this with a small commit. As an added bonus, it looks like the "must run on F37 or later" part isn't necessary. This should work with all recent versions of Python 3 (or perhaps every version), it's just that we didn't notice until F37. Everyone wins!
Metadata Update from @bcotton: - Issue close_status updated to: None (was: Fixed)
Thanks! Works