From 5e37668ecc7752133c01ab974ddd2aa9eb86802b Mon Sep 17 00:00:00 2001 From: "Stephen M. McQuay" Date: Fri, 13 Jul 2012 08:18:34 -0600 Subject: [PATCH] fixed help message --- bin/iterate.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/iterate.py b/bin/iterate.py index af1d6a9..2dd8465 100644 --- a/bin/iterate.py +++ b/bin/iterate.py @@ -7,7 +7,8 @@ from surf.subd import butterfly if __name__ == '__main__': - parser = argparse.ArgumentParser(description='Prune orphan PCDs from couchdb') + parser = argparse.ArgumentParser(description='Manually subdivide mesh ' + '(first argument) and dump json to stdout') parser.add_argument('type', choices=('cc', 'butterfly')) parser.add_argument('mesh') opt = parser.parse_args()