Skip to content
Snippets Groups Projects

Output the Python version and detection pattern in the right order

Merged Luc Everse requested to merge 256-python-detector-version into development
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -166,7 +166,7 @@ public class PythonDetector {
final var matcher = VERSION_PATTERN.matcher(ver);
if (!matcher.matches()) {
logger.warn("{} does not match version pattern {}, skipping",
VERSION_PATTERN.pattern(), ver
ver, VERSION_PATTERN.pattern()
);
return null;
}
Loading