Improve format of command-line help
The tool globalexport.py
uses the help functionality of the argparse
package so that the user can get information about every command-line option. Some options would benefit from being formatted with tabs so that indentations are visible. The standard formatter of argparse
does not support this.
We need to use a different formatter in which this functionality is supported.