Skip to content

Commit

Permalink
Merge pull request borgbackup#3377 from milkey-mouse/fix-build-man
Browse files Browse the repository at this point in the history
Fix build_man issues
  • Loading branch information
ThomasWaldmann authored Nov 26, 2017
2 parents c848141 + 2a83098 commit c312a9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ def issue(name, rawtext, text, lineno, inliner, options={}, content=[]):
roles.register_local_role('issue', issue)
# We give the source_path so that docutils can find relative includes
# as-if the document where located in the docs/ directory.
man_page = publish_string(source=rst, source_path='docs/virtmanpage.rst', writer=manpage.Writer())
man_page = publish_string(source=rst, source_path='docs/%s.rst' % name, writer=manpage.Writer())
with open('docs/man/%s.1' % name, 'wb') as fd:
fd.write(man_page)

Expand Down
2 changes: 1 addition & 1 deletion src/borg/archiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -3762,7 +3762,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
R- == borg extract (extract archive, dry-run, do everything, but do not write files to disk)
R-Z- == all zero files. Measuring heavily duplicated files.
R-R- == random files. No duplication here, measuring throughput through all processing
stages, except writing to disk.
stages, except writing to disk.
U- == borg create (2nd archive creation of unchanged input files, measure files cache speed)
The throughput value is kind of virtual here, it does not actually read the file.
Expand Down

0 comments on commit c312a9a

Please sign in to comment.