From 32d43381dfc0370acb774951f9cdd0cdb1ab7f1b Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Thu, 22 Oct 2015 02:02:23 +0000 Subject: First cut at replacing rpkid's HTTP and I/O system with Tornado. Not quite working perfectly yet (cron is a bit wonky) but manages to produce an initial set of ROAs without thowing any exceptions, and code is already much cleaner than the old callback-based horror. svn path=/branches/tk705/; revision=6139 --- rpki/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rpki/cli.py') diff --git a/rpki/cli.py b/rpki/cli.py index e75b8430..35999cb0 100644 --- a/rpki/cli.py +++ b/rpki/cli.py @@ -77,7 +77,7 @@ class Cmd(cmd.Cmd): return False except BadCommandSyntax, e: print e - except Exception: + except: traceback.print_exc() self.last_command_failed = True return False -- cgit v1.2.3