Skip to content

Commit b9a6035

Browse files
committed
Fix help string
1 parent 6595271 commit b9a6035

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

caso/extract/manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
help="Which extractor to use for getting the data. "
5858
"If you do not specify anything, nova will be "
5959
"used. Available choices are {}".format(
60-
loading.get_available_extractor_names()
60+
sorted(loading.get_available_extractor_names())
6161
),
6262
),
6363
]

etc/caso/caso.conf.sample

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@
6363
#extract_from = <None>
6464

6565
# Which extractor to use for getting the data. If you do not specify anything,
66-
# nova will be used. Available choices are frozenset({'neutron', 'nova',
67-
# 'cinder'}) (list value)
66+
# nova will be used. Available choices are ['cinder', 'neutron', 'nova'] (list
67+
# value)
6868
#extractor = nova
6969

7070
#

0 commit comments

Comments
 (0)