Skip to content
Snippets Groups Projects
Commit 87bdf186 authored by Luc Everse's avatar Luc Everse :passport_control:
Browse files

Merge branch '256-python-detector-version' into 'development'

Output the Python version and detection pattern in the right order

Closes #256

See merge request !155
parents 71c29d09 ff4fdc14
No related branches found
No related tags found
2 merge requests!161Release 2.3.2,!155Output the Python version and detection pattern in the right order
Pipeline #429428 passed
...@@ -166,7 +166,7 @@ public class PythonDetector { ...@@ -166,7 +166,7 @@ public class PythonDetector {
final var matcher = VERSION_PATTERN.matcher(ver); final var matcher = VERSION_PATTERN.matcher(ver);
if (!matcher.matches()) { if (!matcher.matches()) {
logger.warn("{} does not match version pattern {}, skipping", logger.warn("{} does not match version pattern {}, skipping",
VERSION_PATTERN.pattern(), ver ver, VERSION_PATTERN.pattern()
); );
return null; return null;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment