aboutsummaryrefslogtreecommitdiff
path: root/src/argaze/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/argaze/__main__.py')
-rw-r--r--src/argaze/__main__.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/argaze/__main__.py b/src/argaze/__main__.py
index e598384..5c16f39 100644
--- a/src/argaze/__main__.py
+++ b/src/argaze/__main__.py
@@ -1,5 +1,6 @@
-"""Load and execute ArContext configuration.
+"""Load and execute ArContext configuration."""
+"""
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
@@ -31,7 +32,7 @@ import cv2
parser = argparse.ArgumentParser(description=__doc__.split('-')[0])
parser.add_argument('context_file', metavar='CONTEXT_FILE', type=str, help='JSON context filepath')
parser.add_argument('-v', '--verbose', action='store_true', default=False, help='enable verbose mode to print information in console')
-parser.add_argument('-p', '--pipe_path', metavar='PIPE_PATH', type=str, default=None, help='enable pipe communication at given path to execute external commands')
+parser.add_argument('-p', '--pipe_path', metavar='PIPE_PATH', type=str, default=None, help='enable pipe communication to execute external commands')
args = parser.parse_args()