You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I confronted with a problem of "int object not iterable" when execute scanLink.py. The exeption is from line 104 and turns out its because (_id) is regarded as int object instead of a tuple with one element.
(_id,) helps solve the problem.
Thx.
The text was updated successfully, but these errors were encountered:
I was able to solve it changing it to be if linkBuflen >= 10000: for temp_id in nsBuffe cursor.execute("INSERT INTO namespace (id) VALUES ("+str(temp_id)+")")
I confronted with a problem of "int object not iterable" when execute scanLink.py. The exeption is from line 104 and turns out its because (_id) is regarded as int object instead of a tuple with one element.
(_id,) helps solve the problem.
Thx.
The text was updated successfully, but these errors were encountered: