~ahasenack/landscape-client/landscape-client-1.5.5-0ubuntu0.9.04.0

« back to all changes in this revision

Viewing changes to landscape/sysinfo/landscapelink.py

  • Committer: Bazaar Package Importer
  • Author(s): Rick Clark
  • Date: 2008-09-08 16:35:57 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080908163557-l3ixzj5dxz37wnw2
Tags: 1.0.18-0ubuntu1
New upstream release 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from twisted.internet.defer import succeed
 
2
 
 
3
 
 
4
class LandscapeLink(object):
 
5
 
 
6
    def register(self, sysinfo):
 
7
        self._sysinfo = sysinfo
 
8
 
 
9
    def run(self):
 
10
        self._sysinfo.add_footnote("Graph these measurements at "
 
11
                                   "https://landscape.canonical.com")
 
12
        return succeed(None)