summaryrefslogtreecommitdiffstats
path: root/scripts/func
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/func')
-rwxr-xr-xscripts/func7
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/func b/scripts/func
index dcc4561..da2f50e 100755
--- a/scripts/func
+++ b/scripts/func
@@ -16,6 +16,7 @@
import sys
import distutils.sysconfig
+from func.CommonErrors import Func_Client_Exception
# sys.path.append("%s/func" % distutils.sysconfig.get_python_lib())
@@ -23,6 +24,10 @@ import func.overlord.func_command as func_command
myname, argv = sys.argv[0], sys.argv[1:]
cli = func_command.FuncCommandLine()
-cli.parse(argv)
+try:
+ cli.parse(argv)
+except Func_Client_Exception, e:
+ print "ERROR:", e
+ sys.exit(1)