From f1e1cd58a6dd518e8740c29aec49c060e51906b4 Mon Sep 17 00:00:00 2001 From: Alberto Planas Date: Oct 12 2021 13:10:33 +0000 Subject: inspector: update path flag help --- diff --git a/rust2rpm/inspector.py b/rust2rpm/inspector.py index 1105837..c357153 100644 --- a/rust2rpm/inspector.py +++ b/rust2rpm/inspector.py @@ -58,7 +58,7 @@ def main(): fgroup.add_argument("-a", "--all-features", action="store_true", help="Activate all features") fgroup.add_argument("-f", "--features", default="default", help="Feature(s) to work on (comma-separated)") parser.add_argument("--vendor", action="store_true", help="Print vendoring provides (even when not vendored)") - parser.add_argument("-p", "--path", help="Path where the source project is living") + parser.add_argument("-p", "--path", help="Path to the source project") parser.add_argument("file", nargs="*", help="Path(s) to Cargo.toml") args = parser.parse_args()