man pages: remove reference to borg(1) -- would have to be written first

A compact introduction and perhaps a condensed quickstart would
be good for borg(1).
This commit is contained in:
Marian Beermann 2017-02-05 11:53:02 +01:00
parent c7106e756e
commit e5ea876f90
1 changed files with 1 additions and 1 deletions

View File

@ -460,7 +460,7 @@ class build_man(Command):
def write_see_also(self, write, man_title):
see_also = self.see_also.get(man_title.replace('borg-', ''), ())
see_also = ['`borg-%s(1)`' % s for s in see_also]
see_also.insert(0, '`borg(1)`')
see_also.insert(0, '`borg-common(1)`')
self.write_heading(write, 'SEE ALSO')
write(', '.join(see_also))