diff --git a/landscape/sysinfo/landscapelink.py b/landscape/sysinfo/landscapelink.py index 771290934..f8669b9b9 100644 --- a/landscape/sysinfo/landscapelink.py +++ b/landscape/sysinfo/landscapelink.py @@ -7,7 +7,7 @@ def register(self, sysinfo): def run(self): self._sysinfo.add_footnote( - "Graph this data and manage this system at:\n" - " https://landscape.canonical.com/", + "Graph this data and manage this system with Landscape. \n" + "https://ubuntu.com/landscape", ) return succeed(None) diff --git a/landscape/sysinfo/tests/test_landscapelink.py b/landscape/sysinfo/tests/test_landscapelink.py index ca573697c..93b8d8d97 100644 --- a/landscape/sysinfo/tests/test_landscapelink.py +++ b/landscape/sysinfo/tests/test_landscapelink.py @@ -20,7 +20,7 @@ def test_run_adds_footnote(self): self.assertEqual( self.sysinfo.get_footnotes(), [ - "Graph this data and manage this system at:\n" - " https://landscape.canonical.com/", + "Graph this data and manage this system with Landscape. \n" + "https://ubuntu.com/landscape", ], )