We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 785e75a commit f4d5784Copy full SHA for f4d5784
1 file changed
src/scyjava/_jvm.py
@@ -105,9 +105,7 @@ def jvm_version() -> tuple[int, ...]:
105
m = re.match('.* version "([^"]*)"', output)
106
if not m:
107
raise RuntimeError(
108
- "Inscrutable java command output:\n" +
109
- f"$ {java} -version\n" +
110
- output
+ f"Inscrutable java command output:\n$ {java} -version\n{output}"
111
)
112
113
v = m.group(1)
0 commit comments