Comment 1 for bug 1180496

Revision history for this message
Jeff Lane  (bladernr) wrote :

simple fix, after we ganged up on it. The issue is that cpuinfo parser is splitting on all occurances of ':' rather than the first instance.

Changing this to limit maxsplit:

str.split(delimiter,maxsplit)

resolves the issue.