From 64f81f01cc99f24467290db6c9be607a61a3c25e Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Mon, 7 Jan 2013 07:20:38 +0100 Subject: [PATCH] Improved pdm-repl error reporting somewhat. --- pdm-repl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pdm-repl b/pdm-repl index daa8c18..992df4f 100755 --- a/pdm-repl +++ b/pdm-repl @@ -14,7 +14,11 @@ for o, a in opts: if len(args) < 1: usage(sys.stderr) sys.exit(1) -cl = pdm.cli.replclient(args[0]) +try: + cl = pdm.cli.replclient(args[0]) +except Exception as e: + sys.stderr.write("%s: %s\n" % (args[0], e)) + sys.exit(1) buf = "" while True: -- 2.11.0