DeDop / dedop-core

DeDop is a User Configurable Tool for Processing Delay Doppler Altimeter Data.
http://dedop.org/
GNU General Public License v3.0
14 stars 8 forks source link

`--traceback` not enabled for the `run` command #26

Closed mark-ep closed 7 years ago

mark-ep commented 7 years ago

running dedop -h lists an optional --traceback flag, which will display the full Python traceback if the processor encounters an error. However, this option isn't enabled on the dedop run command, which is where it would be most useful.

running dedop run --traceback generates the error:

usage: dedop [-h] [--version] [--traceback] [--license] [--docs] COMMAND ...
dedop: error: unrecognized arguments: --traceback
mzuehlke commented 7 years ago

According to the help the --traceback muste be before the run command:

dedop --traceback run
mark-ep commented 7 years ago

Oops, sorry! thanks for correcting me.