When using rdump to only dump certain fields using the -F flag, the help messages states:
-F FIELDS, --fields FIELDS
Fields (comma seperated) to output in dumping (default: None)
Providing the list field_a, field_b, field_c does not yield the expected result, as only field_a is correctly parsed, but the other fields are not. This is maybe because the splitted elements are not stripped from spaces, resulting in the field field_b (with a space prepended to it), which is a field name that does not exist, resulting in rdump not finding the field.
Would it be good to strip the parsed fields from spaces or provide a text that explicitly mentions this in the help message of the relevant arguments?
When using
rdumpto only dump certain fields using the-Fflag, the help messages states:Providing the list
field_a, field_b, field_cdoes not yield the expected result, as onlyfield_ais correctly parsed, but the other fields are not. This is maybe because the splitted elements are not stripped from spaces, resulting in the fieldfield_b(with a space prepended to it), which is a field name that does not exist, resulting inrdumpnot finding the field.Would it be good to strip the parsed fields from spaces or provide a text that explicitly mentions this in the help message of the relevant arguments?