Skip to content

Commit ccf9f26

Browse files
committed
Fixed format string bug
1 parent 28d272f commit ccf9f26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

raylibpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
)
7575
)
7676

77-
print('INFO: Found "{}" in "{}"', lib_name, str(RAYLIB_BIN_PATH))
77+
print('INFO: Found "{}" in "{}"'.format(lib_name, str(RAYLIB_BIN_PATH)))
7878
_rl = CDLL(str(RAYLIB_BIN_PATH / lib_name))
7979

8080
__all__ = [

0 commit comments

Comments
 (0)