~sylvain-pineau/launchpad-results/trend-reports-yui3

« back to all changes in this revision

Viewing changes to lib/lpresults/hardware/interfaces/system.py

  • Committer: Marc Tardif
  • Date: 2011-10-10 16:36:06 UTC
  • Revision ID: marc.tardif@canonical.com-20111010163606-b1d9pw4q8nl114oz
Fixed parsing of udevadm output.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
            title=u"Name",
41
41
            required=True,
42
42
            readonly=True,
43
 
            description=u"The name consisting of the make and model."))
 
43
            description=(
 
44
                u"The name consisting of the model, make and version.")))
44
45
 
45
46
    model = exported(
46
47
        TextLine(
56
57
            readonly=True,
57
58
            description=u"The make for this system."))
58
59
 
 
60
    version = exported(
 
61
        TextLine(
 
62
            title=u"Version",
 
63
            required=False,
 
64
            readonly=True,
 
65
            description=u"The version for this system."))
 
66
 
59
67
 
60
68
class ISystemSet(ITopLevelEntryLink, IDjangoLocation, ISearchSet):
61
69