# Pastebin Gj2aSRX5 diff openstackclient/network/v2/_tag.py ../../python-openstackclient/openstackclient/network/v2/_tag.py 25c25,26 < def add_tag_filtering_option_to_parser(parser, collection_name): --- > def add_tag_filtering_option_to_parser(parser, collection_name, > enhance_help=lambda _h: _h): 30,31c31,33 < help=_('List %s which have all given tag(s) ' < '(Comma-separated list of tags)') % collection_name --- > help=enhance_help( > _('List %s which have all given tag(s) (Comma-separated list of ' > 'tags)') % collection_name) 37,38c39,41 < help=_('List %s which have any given tag(s) ' < '(Comma-separated list of tags)') % collection_name --- > help=enhance_help( > _('List %s which have any given tag(s) (Comma-separated list of ' > 'tags)') % collection_name) 44,45c47,49 < help=_('Exclude %s which have all given tag(s) ' < '(Comma-separated list of tags)') % collection_name --- > help=enhance_help( > _('Exclude %s which have all given tag(s) (Comma-separated list ' > 'of tags)') % collection_name) 51,52c55,57 < help=_('Exclude %s which have any given tag(s) ' < '(Comma-separated list of tags)') % collection_name --- > help=enhance_help( > _('Exclude %s which have any given tag(s) (Comma-separated list ' > 'of tags)') % collection_name) 67c72,73 < def add_tag_option_to_parser_for_create(parser, resource_name): --- > def add_tag_option_to_parser_for_create(parser, resource_name, > enhance_help=lambda _h: _h): 74,75c80,82 < help=_("Tag to be added to the %s " < "(repeat option to set multiple tags)") % resource_name --- > help=enhance_help( > _("Tag to be added to the %s " > "(repeat option to set multiple tags)") % resource_name) 80c87 < help=_("No tags associated with the %s") % resource_name --- > help=enhance_help(_("No tags associated with the %s") % resource_name) 84c91,92 < def add_tag_option_to_parser_for_set(parser, resource_name): --- > def add_tag_option_to_parser_for_set(parser, resource_name, > enhance_help=lambda _h: _h): 90,91c98,100 < help=_("Tag to be added to the %s " < "(repeat option to set multiple tags)") % resource_name --- > help=enhance_help( > _("Tag to be added to the %s (repeat option to set multiple " > "tags)") % resource_name) 96,97c105,107 < help=_("Clear tags associated with the %s. Specify both " < "--tag and --no-tag to overwrite current tags") % resource_name --- > help=enhance_help( > _("Clear tags associated with the %s. Specify both --tag and " > "--no-tag to overwrite current tags") % resource_name)