Skip to content

Commit bfad8b2

Browse files
committed
Fix compilation error after rebase
1 parent a16111e commit bfad8b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/capi/DynamicObjectNativeWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ static long doMaVersionTag(PDict object, PythonObjectNativeWrapper nativeWrapper
789789

790790
DynamicObjectStorage nativeMemberStore = nativeWrapper.getNativeMemberStore();
791791
if (nativeMemberStore == null) {
792-
nativeMemberStore = nativeWrapper.createNativeMemberStore(PythonLanguage.getCurrent());
792+
nativeMemberStore = nativeWrapper.createNativeMemberStore(PythonLanguage.get(null));
793793
}
794794
HashingStorageLibrary uncached = HashingStorageLibrary.getFactory().getUncached(nativeMemberStore);
795795
Object item = uncached.getItem(nativeMemberStore, MA_VERSION_TAG.getMemberName());

0 commit comments

Comments
 (0)