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 74f5a03 commit c9e0e1fCopy full SHA for c9e0e1f
MiddleKit/Run/SQLObjectStore.py
@@ -635,7 +635,7 @@ def objRefZeroSerialNum(self, objRef):
635
Invoked by fetchObjRef() if either the class or the object serial
636
number is zero.
637
"""
638
- raise ObjRefZeroSerialNumError(objRefSplit(objRef))
+ raise ObjRefZeroSerialNumError(*objRefSplit(objRef))
639
640
def objRefDangles(self, objRef):
641
"""Raise dangling reference error.
@@ -647,7 +647,7 @@ def objRefDangles(self, objRef):
647
self.warning() and includes the objRef as decimal, hexadecimal
648
and class:obj numbers.
649
650
- raise ObjRefDanglesError(objRefSplit(objRef))
+ raise ObjRefDanglesError(*objRefSplit(objRef))
651
652
653
## Special Cases ##
0 commit comments