From 9f8774f64a4d878fb5d5cfaaee62dd54d1650990 Mon Sep 17 00:00:00 2001 From: Gabriel Pettier Date: Sun, 10 May 2020 00:10:11 +0200 Subject: [PATCH] fix missing closing parenthesis in comment --- jnius/jnius_jvm_dlopen.pxi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jnius/jnius_jvm_dlopen.pxi b/jnius/jnius_jvm_dlopen.pxi index 8eadd0ac..ce1cf436 100644 --- a/jnius/jnius_jvm_dlopen.pxi +++ b/jnius/jnius_jvm_dlopen.pxi @@ -98,7 +98,7 @@ cdef void create_jnienv() except *: handle = dlopen(lib_path, RTLD_NOW | RTLD_GLOBAL) if handle == NULL: - raise SystemError("Error calling dlopen({0}: {1}".format(lib_path, dlerror())) + raise SystemError("Error calling dlopen({0}): {1}".format(lib_path, dlerror())) cdef void *jniCreateJVM = dlsym(handle, b"JNI_CreateJavaVM")