We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45f5645 commit 1affd01Copy full SHA for 1affd01
roundup/hyperdb.py
@@ -954,8 +954,9 @@ def post_init(self):
954
for cn in self.getclasses():
955
cl = self.getclass(cn)
956
# This will change properties if a back-multilink happens to
957
- # have the same class, so we need to iterate over .keys()
958
- for p in cl.properties.keys():
+ # have the same class, so we need to iterate over a list made
+ # from .keys()
959
+ for p in list(cl.properties.keys()):
960
prop = cl.properties[p]
961
if not isinstance (prop, (Link, Multilink)):
962
continue
0 commit comments