From 63f382c1742d52b590d0436e878ff9dfb75e7e75 Mon Sep 17 00:00:00 2001 From: Adrian Likins Date: Tue, 2 Oct 2007 16:54:36 -0400 Subject: changes to use the new command line modules --- scripts/func | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/func b/scripts/func index 2afb4e7..5e069f8 100755 --- a/scripts/func +++ b/scripts/func @@ -8,7 +8,7 @@ import distutils.sysconfig import func.overlord.client as client myname, argv = sys.argv[0], sys.argv[1:] -cli = client.FuncCommandLine(myname, argv) -cli.run() +cli = client.FuncCommandLine() +print cli.parse(argv) -- cgit From 63e937cf144f0c61811bb6d842cfc22838a6b851 Mon Sep 17 00:00:00 2001 From: James Bowes Date: Tue, 2 Oct 2007 21:51:13 -0400 Subject: Fix up recursive pylint and pychecker rules. --- scripts/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/Makefile b/scripts/Makefile index 86a3db8..a4cc7e1 100755 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -15,5 +15,6 @@ pychecker:: @$(PYCHECKER) $(PYFILES) || exit 0 pyflakes:: +ifneq ($(PYFILES)x, x) @$(PYFLAKES) $(PYFILES) || exit 0 - +endif -- cgit