Use space as separator

This commit is contained in:
Fabrice Reix 2024-01-23 15:19:58 +01:00
parent c6bc18570d
commit 286f143fc4
No known key found for this signature in database
GPG Key ID: BF5213154B2E7155
4 changed files with 4 additions and 4 deletions

View File

@ -122,7 +122,7 @@ class Option:
elif key == "help":
help = v
elif key == "conflict":
conflict = [a.strip() for a in v.split(",")]
conflict = [a.strip() for a in v.split(" ")]
elif key == "multi":
if v == "append":
append = True

View File

@ -1,7 +1,7 @@
name: check
long: check
help: Run in 'check' mode
conflict: format, output
conflict: format output
---
Run in 'check' mode. Exits with 0 if input is formatted correctly, 1 otherwise.

View File

@ -1,7 +1,7 @@
name: color
long: color
help: Colorize Output
conflict: no_color, in_place
conflict: no_color in_place
---
Colorize Output.

View File

@ -1,7 +1,7 @@
name: in_place
long: in-place
help: Modify files in place
conflict: output, color
conflict: output color
---
Modify file in place.