Skip to content

Commit

Permalink
cli: fix warning message text for ignoring symlink issues in 'archive…
Browse files Browse the repository at this point in the history
…' command.
  • Loading branch information
pjbriggs committed Nov 29, 2023
1 parent e2e0340 commit 37a7e87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ngsarchiver/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,8 @@ def main(argv=None):
if not is_readable:
msg += "; unreadable files will be omitted"
if has_external_symlinks or has_broken_symlinks:
msg += "; broken/external links will be copied "
"directly into archive"
msg += "; broken/external links will be archived " \
"as-is"
msg += ")"
logger.warning(msg)
else:
Expand Down

0 comments on commit 37a7e87

Please sign in to comment.