Skip to content

Commit c9e0e1f

Browse files
Fix for errors that call objRefSplit() for args
1 parent 74f5a03 commit c9e0e1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MiddleKit/Run/SQLObjectStore.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ def objRefZeroSerialNum(self, objRef):
635635
Invoked by fetchObjRef() if either the class or the object serial
636636
number is zero.
637637
"""
638-
raise ObjRefZeroSerialNumError(objRefSplit(objRef))
638+
raise ObjRefZeroSerialNumError(*objRefSplit(objRef))
639639

640640
def objRefDangles(self, objRef):
641641
"""Raise dangling reference error.
@@ -647,7 +647,7 @@ def objRefDangles(self, objRef):
647647
self.warning() and includes the objRef as decimal, hexadecimal
648648
and class:obj numbers.
649649
"""
650-
raise ObjRefDanglesError(objRefSplit(objRef))
650+
raise ObjRefDanglesError(*objRefSplit(objRef))
651651

652652

653653
## Special Cases ##

0 commit comments

Comments
 (0)