Skip to content
Snippets Groups Projects
Commit a13c95bd authored by Bruce Flynn's avatar Bruce Flynn
Browse files

Sort rdr2l0 before merging to ease sorting

parent eb5ec429
No related branches found
No related tags found
No related merge requests found
......@@ -174,7 +174,7 @@ def cmd_rdr2l0():
if args.ancillary:
for apid in (0, 8, 11):
inputs = glob.glob('*.anc{:d}.pkts'.format(apid))
inputs = sorted(glob.glob('*.anc{:d}.pkts'.format(apid)))
product = '{:04d}AAAAAAAAAAAAA'.format(apid)
pdsname = pdsfilename(product)
LOG.info("merging apid %d to %s", apid, pdsname)
......@@ -185,7 +185,7 @@ def cmd_rdr2l0():
if args.science:
if file_type not in science_products:
parser.exit(1, '%s is not a supported science file type\n' % file_type)
inputs = glob.glob('*.science.pkts')
inputs = sorted(glob.glob('*.science.pkts'))
product = science_products[file_type]
pdsname = pdsfilename(product)
LOG.info("merging %s to %s", product, pdsname)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment