@@ -200,11 +200,12 @@ def main(): # <4>
200200 ' for bulk insert to CouchDB via POST to db/_bulk_docs' )
201201 parser .add_argument (
202202 '-m' , '--mongo' , action = 'store_true' ,
203- help = 'output individual records as separate JSON dictionaries,'
204- ' one per line for bulk insert to MongoDB via mongoimport utility' )
203+ help = 'output individual records as separate JSON dictionaries, one '
204+ ' per line for bulk insert to MongoDB via mongoimport utility' )
205205 parser .add_argument (
206206 '-t' , '--type' , type = int , metavar = 'ISIS_JSON_TYPE' , default = 1 ,
207- help = 'ISIS-JSON type, sets field structure: 1=string, 2=alist, 3=dict (default=1)' )
207+ help = 'ISIS-JSON type, sets field structure: 1=string, 2=alist,'
208+ ' 3=dict (default=1)' )
208209 parser .add_argument (
209210 '-q' , '--qty' , type = int , default = DEFAULT_QTY ,
210211 help = 'maximum quantity of records to read (default=ALL)' )
@@ -220,7 +221,8 @@ def main(): # <4>
220221 help = 'generate an "_id" with a random UUID for each record' )
221222 parser .add_argument (
222223 '-p' , '--prefix' , type = str , metavar = 'PREFIX' , default = '' ,
223- help = 'concatenate prefix to every numeric field tag (ex. 99 becomes "v99")' )
224+ help = 'concatenate prefix to every numeric field tag'
225+ ' (ex. 99 becomes "v99")' )
224226 parser .add_argument (
225227 '-n' , '--mfn' , action = 'store_true' ,
226228 help = 'generate an "_id" from the MFN of each record'
0 commit comments