Skip to content
Snippets Groups Projects
Commit 69af66cc authored by florian's avatar florian
Browse files

FIX: Typo

parent edfa9f56
No related branches found
No related tags found
2 merge requests!105REL: v0.4.0,!101ENH: add the 'add_prefix' argument
Pipeline #33961 passed
...@@ -1250,7 +1250,7 @@ def crawler_main(crawled_directory_path: str, ...@@ -1250,7 +1250,7 @@ def crawler_main(crawled_directory_path: str,
dry_run : bool dry_run : bool
do not commit any chnages to the server do not commit any chnages to the server
prefix : str prefix : str
DEPRICATED, remove the given prefix from file paths DEPRECATED, remove the given prefix from file paths
securityMode : int securityMode : int
securityMode of Crawler securityMode of Crawler
unique_names : bool unique_names : bool
...@@ -1379,8 +1379,8 @@ def parse_args(): ...@@ -1379,8 +1379,8 @@ def parse_args():
parser.add_argument("-u", "--unique-names", parser.add_argument("-u", "--unique-names",
help="Insert or updates entities even if name conflicts exist.") help="Insert or updates entities even if name conflicts exist.")
parser.add_argument("-p", "--prefix", parser.add_argument("-p", "--prefix",
help="DEPRICATED. Remove the given prefix from the paths " help="DEPRECATED, use --remove-prefix instead. Remove the given prefix "
"of all file objects.") "from the paths of all file objects.")
parser.add_argument("--remove-prefix", parser.add_argument("--remove-prefix",
help="Remove the given prefix from the paths of all file objects.") help="Remove the given prefix from the paths of all file objects.")
parser.add_argument("--add-prefix", parser.add_argument("--add-prefix",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment