Comment 3 for bug 478255

Revision history for this message
OutLikeAShoe (outlikeashoe) wrote :

> frank 2983 2909 4 20:33 pts/2 00:00:00 /usr/bin/python2.6 ./lrcShow-X.py

The regex only searches for "python", in your case it's "python2.6".

We can match for "python(version)?".
In this case the regex should be something like
"python[\\d\\.]*\\s*lrcShow-X\\.py"
Please try if it matches, if so we can update the regex.