Skip to content

Commit faf3885

Browse files
authored
RD-6220 Drop token_normalize_func (#1452)
Lowercasing everything is just a bad idea. This makes it impossible to pass some flags, eg `-T` (because it gets interpreted as `-t`)
1 parent 3a4bf37 commit faf3885

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cloudify_cli/cli/cfy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
CLICK_CONTEXT_SETTINGS = dict(
4848
help_option_names=['-h', '--help'],
49-
token_normalize_func=lambda param: param.lower())
49+
)
5050

5151
AGENT_FILTER_NODE_IDS = 'node_ids'
5252
AGENT_FILTER_NODE_INSTANCE_IDS = 'node_instance_ids'

0 commit comments

Comments
 (0)