Comment 13 for bug 1993019

Revision history for this message
Gabriel A. Devenyi (gadevenyi) wrote :

The proposed change breaks extraction for drivers without -open.

A more appropriate fix is to regex extract the version number:
```
version = int(re.findall("[0-9]+", package_name)[0]
```