diff options
| author | Franklin Wei <franklin@rockbox.org> | 2020-01-31 00:30:16 -0500 |
|---|---|---|
| committer | Franklin Wei <franklin@rockbox.org> | 2020-01-31 00:30:16 -0500 |
| commit | 9090706427a47adfb96b701fe4730d23badbebb2 (patch) | |
| tree | 3ddc1f2c1f61c139623705006852d424dca8f2fc | |
| parent | 2e0c87e565e5491e3a8a001e52acd553ca1948e1 (diff) | |
| download | rastercarve-9090706427a47adfb96b701fe4730d23badbebb2.zip rastercarve-9090706427a47adfb96b701fe4730d23badbebb2.tar.gz rastercarve-9090706427a47adfb96b701fe4730d23badbebb2.tar.bz2 rastercarve-9090706427a47adfb96b701fe4730d23badbebb2.tar.xz | |
Reword dimension group help.
| -rwxr-xr-x | rastercarve/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rastercarve/__main__.py b/rastercarve/__main__.py index b5149a8..e3bf4fe 100755 --- a/rastercarve/__main__.py +++ b/rastercarve/__main__.py @@ -397,7 +397,7 @@ since the spindle will fail to start and damage the material. Use this flag with caution on other machines.""") parser.add_argument('filename', help='input image (any OpenCV-supported format)') - dim_group = parser.add_argument_group('output dimensions', 'Exactly one required.') + dim_group = parser.add_argument_group('output dimensions', 'Exactly one required. Image will be scaled while maintaining aspect ratio.') mutex_group = dim_group.add_mutually_exclusive_group(required=True) mutex_group.add_argument('--width', help='output width (in)', action='store', dest='width', type=float, default=argparse.SUPPRESS) mutex_group.add_argument('--height', help='output height (in)', action='store', dest='height', type=float, default=argparse.SUPPRESS) |