Skip to content

Commit

Permalink
fixed typo in option help
Browse files Browse the repository at this point in the history
  • Loading branch information
fracpete committed Aug 4, 2021
1 parent 03e55b4 commit 8b34e3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ optional arguments:
the minimum height for the cropped content (default:
2)
--output_metadata whether to output a YAML file alongside the image with
some metadata when output frame images (default:
some metadata when outputting frame images (default:
False)
--progress INT every nth frame a progress is being output (in verbose
mode) (default: 100)
Expand Down
2 changes: 1 addition & 1 deletion src/vfs/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ def main(args=None):
parser.add_argument("--crop_margin", metavar="INT", help="the margin in pixels to use around the determined crop region", required=False, type=int, default=0)
parser.add_argument("--crop_min_width", metavar="INT", help="the minimum width for the cropped content", required=False, type=int, default=2)
parser.add_argument("--crop_min_height", metavar="INT", help="the minimum height for the cropped content", required=False, type=int, default=2)
parser.add_argument("--output_metadata", help="whether to output a YAML file alongside the image with some metadata when output frame images", required=False, action="store_true")
parser.add_argument("--output_metadata", help="whether to output a YAML file alongside the image with some metadata when outputting frame images", required=False, action="store_true")
parser.add_argument("--progress", metavar="INT", help="every nth frame a progress is being output (in verbose mode)", required=False, type=int, default=100)
parser.add_argument("--verbose", help="for more verbose output", action="store_true", required=False)
parsed = parser.parse_args(args=args)
Expand Down

0 comments on commit 8b34e3c

Please sign in to comment.