Skip to content

Commit 137f2e8

Browse files
committed
Fixing issue with merge.
1 parent 4870eea commit 137f2e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/PosixModuleBuiltins.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -718,8 +718,8 @@ Object open(VirtualFrame frame, String pathname, int flags, int fileMode, @Suppr
718718
}
719719

720720
@Specialization(guards = {"isNoValue(dir_fd)"})
721-
Object open(PBytes pathname, int flags, int fileMode, PNone dir_fd) {
722-
return open(decode(getByteArray(pathname)), flags, fileMode, dir_fd);
721+
Object open(VirtualFrame frame, PBytes pathname, int flags, int fileMode, PNone dir_fd) {
722+
return open(frame, decode(getByteArray(pathname)), flags, fileMode, dir_fd);
723723
}
724724

725725
private byte[] getByteArray(PIBytesLike pByteArray) {

0 commit comments

Comments
 (0)