Parcourir la source

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).
Marian Beermann il y a 9 ans
Parent
commit
e5ea876f90
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      setup.py

+ 1 - 1
setup.py

@@ -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))