Standardize abbrevs formatting

The output format for `help` includes a trailing and leading blank line,
which were missing from `abbrevs` output. Additionally, `help` includes
a colon at the end of the header line, which this commit also adds to
`abbrevs` output.
This commit is contained in:
Vee 2020-06-13 06:39:18 -04:00
parent dfa1dd7fd0
commit 3cf447cc3a
1 changed files with 3 additions and 2 deletions

View File

@ -1133,12 +1133,13 @@ Slow internet connection? Use 'set timeout' to be more patient.""")
def do_abbrevs(self, *args):
"""Print all AV-98 command abbreviations."""
header = "Command Abbreviations"
self.stdout.write("{}\n".format(str(header)))
header = "Command Abbreviations:"
self.stdout.write("\n{}\n".format(str(header)))
if self.ruler:
self.stdout.write("{}\n".format(str(self.ruler * len(header))))
for k, v in _ABBREVS.items():
self.stdout.write("{:<7} {}\n".format(k, v))
self.stdout.write("\n")
### Stuff for getting around
def do_go(self, line):