~gma500/emgd/jockey

« back to all changes in this revision

Viewing changes to jockey/detection.py

  • Committer: Martin Pitt
  • Date: 2011-01-06 10:12:11 UTC
  • Revision ID: martin.pitt@canonical.com-20110106101211-qy71vwo0vm2ljcta
fix \n at end of fingerprints in DriverIDs

Show diffs side-by-side

added added

removed removed

Lines of Context:
647
647
        for line in f:
648
648
            m = fingerprint_re.search(line)
649
649
            if m:
650
 
                return m.group(1) 
 
650
                return m.group(1).strip()
651
651
 
652
652
        return None
653
653