diff options
author | Rob Austein <sra@hactrn.net> | 2015-10-22 02:02:23 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-10-22 02:02:23 +0000 |
commit | 32d43381dfc0370acb774951f9cdd0cdb1ab7f1b (patch) | |
tree | cfb37241df8d869ed08a24b3021a4a599cb98bdb /rpki/cli.py | |
parent | 1ca142b706eab552f9e2c575ef15d1862516393b (diff) |
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
Diffstat (limited to 'rpki/cli.py')
-rw-r--r-- | rpki/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |