From: Fredrik Tolf Date: Mon, 7 Jan 2013 06:20:38 +0000 (+0100) Subject: Improved pdm-repl error reporting somewhat. X-Git-Tag: 0.2~5 X-Git-Url: http://dolda2000.com/gitweb/?p=pdm.git;a=commitdiff_plain;h=64f81f01cc99f24467290db6c9be607a61a3c25e Improved pdm-repl error reporting somewhat. --- 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: