You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This has been an issue with a few projects. Because use_delimiter(true) is the default, which is meant for multiple values, but it takes affect even with a single value for an option or arg. This means a valid single value, --option "some thing, with commas, and stuff" will get split up and causes confusing errors.
use_delimiter(false) should be default unlessmultiple(true) or similar has been set (such as number_of_values etc.)
The text was updated successfully, but these errors were encountered:
This has been an issue with a few projects. Because
use_delimiter(true)
is the default, which is meant for multiple values, but it takes affect even with a single value for an option or arg. This means a valid single value,--option "some thing, with commas, and stuff"
will get split up and causes confusing errors.use_delimiter(false)
should be default unlessmultiple(true)
or similar has been set (such asnumber_of_values
etc.)The text was updated successfully, but these errors were encountered: