bedup icon indicating copy to clipboard operation
bedup copied to clipboard

Fix RuntimeError/Issue #67

Open Corey-J-Bukolt opened this issue 9 years ago • 1 comments

It seems this is caused by line 551 and the fact that in Python3 .items() creates an iterator object unlike Py2 which creates a copy of the object. Using dict(ri_rel).items() creates an iterator of a copy of ri_rel allowing 551 to modify the original ri_rel without triggering an exception.

Tested on my own system without issues.

Corey-J-Bukolt avatar Mar 01 '16 21:03 Corey-J-Bukolt

Fixes: #67

srl295 avatar Nov 07 '22 20:11 srl295