Skip to content

Commit

Permalink
fix: Updated motd (#291)
Browse files Browse the repository at this point in the history
edited string for motd to point to right link
  • Loading branch information
david-mclain authored Dec 2, 2024
1 parent 1449b56 commit a377805
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions landscape/sysinfo/landscapelink.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
4 changes: 2 additions & 2 deletions landscape/sysinfo/tests/test_landscapelink.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
],
)

0 comments on commit a377805

Please sign in to comment.