Skip to content

Fix to backend version methods

Peter Donis requested to merge pdonis/src:version-fix into master

The backend version methods were throwing TypeError under Python 3 because the regex search strings were Unicode but the capture output being searched was binary. This ASCII encodes the regex strings so the types match.

Merge request reports