wesnoth_addon_manager: removed unused --color switch

This commit is contained in:
Elvish_Hunter 2023-04-07 22:03:56 +02:00
parent c7e2b5d83c
commit 85393d4ec5
2 changed files with 1 additions and 3 deletions

View file

@ -17,6 +17,7 @@
* wesnoth_addon_manager now supports IPv6 connection (using the `--ipv6` flag)
* Added new command line flag `--terms` to wesnoth_addon_manager (retrieves and prints the add-ons server upload terms)
* wesnoth_addon_manager now supports the `--version` flag (reports the current Wesnoth version)
* Removed unused `--color` switch from wesnoth_addon_manager
## Version 1.16.8
### Editor

View file

@ -43,9 +43,6 @@ if __name__ == "__main__":
argumentparser.add_argument("-w", "--wml",
help="when listing add-ons, list the raw wml",
action="store_true",)
argumentparser.add_argument("-C", "--color",
help="use colored WML output",
action="store_true",)
argumentparser.add_argument("-c", "--campaigns-dir",
help="directory where add-ons are stored",
default=".")