From 3c4f53ef53d9a95c51bdec851f586774827a2eac Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Wed, 16 Aug 2017 23:23:58 +0800 Subject: update_manifest.py: Fix logger and update manifest creation --- bin/update_manifest.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'bin') diff --git a/bin/update_manifest.py b/bin/update_manifest.py index 1cfe05b..44ccb94 100755 --- a/bin/update_manifest.py +++ b/bin/update_manifest.py @@ -37,7 +37,7 @@ def add_repro(reprodir, manifest): """ Add the generated products by ``chandra_repro`` to the manifest. """ - logging.info("Adding repro products from: {0}".format(reprodir)) + logger.info("Adding repro products from: {0}".format(reprodir)) keyglobs = OrderedDict([ ("evt2", "acisf*_repro_evt2.fits"), ("bpix", "acisf*_repro_bpix1.fits"), @@ -52,19 +52,22 @@ def add_repro(reprodir, manifest): def main(): + manifestfile = "manifest.yaml" + parser = argparse.ArgumentParser( - description="Update manifest.yaml with generated products") + description="Update %s with generated products" % manifestfile) parser.add_argument("-c", "--create", dest="create", action="store_true", - help="create 'manifest.yaml' under current working " + - "directory if necessary") + help="create '%s' under current " % manifestfile + + "working directory if not exists") parser.add_argument("-r", "--repro", dest="reprodir", default=None, help="path to the repro directory; add the " + "reprocessed products to manifest if specified") args = parser.parse_args() - if args.create: - open("manifest.yaml", "a").close() + if (not os.path.exists(manifestfile)) and args.create: + logger.info("Create %s" % manifestfile) + open(manifestfile, "a").close() manifest = get_manifest() if args.reprodir: -- cgit v1.2.2