removed defunct option to output labels as column vector.

This commit is contained in:
Philip Eisenlohr 2015-12-04 04:31:53 +00:00
parent 937634d703
commit 784c78a3b0
1 changed files with 10 additions and 15 deletions

View File

@ -18,14 +18,10 @@ Show components of given ASCIItable(s).
""", version = scriptID) """, version = scriptID)
parser.add_option('-d','--data',
dest = 'data',
action = 'store_true',
help = 'output data')
parser.add_option('-a','--head', parser.add_option('-a','--head',
dest = 'head', dest = 'head',
action = 'store_true', action = 'store_true',
help = 'output all heading (info + labels)') help = 'output complete header (info + labels)')
parser.add_option('-i','--info', parser.add_option('-i','--info',
dest = 'info', dest = 'info',
action = 'store_true', action = 'store_true',
@ -34,25 +30,24 @@ parser.add_option('-l','--labels',
dest = 'labels', dest = 'labels',
action = 'store_true', action = 'store_true',
help = 'output labels') help = 'output labels')
parser.add_option('-c','--column', parser.add_option('-d','--data',
dest = 'col', dest = 'data',
action = 'store_true', action = 'store_true',
help = 'print labels as one column') help = 'output data')
parser.add_option('--nolabels',
dest = 'labeled',
action = 'store_false',
help = 'table has no labels')
parser.add_option('-t','--table', parser.add_option('-t','--table',
dest = 'table', dest = 'table',
action = 'store_true', action = 'store_true',
help = 'output heading line for proper ASCIItable format') help = 'output heading line for proper ASCIItable format')
parser.set_defaults(head = False, parser.add_option('--nolabels',
dest = 'labeled',
action = 'store_false',
help = 'table has no labels')
parser.set_defaults(table = False,
head = False,
info = False, info = False,
labels = False, labels = False,
data = False, data = False,
col = False,
labeled = True, labeled = True,
table = False,
) )
(options,filenames) = parser.parse_args() (options,filenames) = parser.parse_args()