From f1e1cd58a6dd518e8740c29aec49c060e51906b4 Mon Sep 17 00:00:00 2001 From: Alberto Planas Date: Tue, 13 Oct 2020 18:52:00 +0200 Subject: [PATCH] inspector: update path flag help --- rust2rpm/inspector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()