From: Forrest Voight Date: Mon, 30 Jan 2012 19:04:29 +0000 (-0500) Subject: restore behaviour of dying in case of a "fatal error", which was accidentally removed... X-Git-Tag: 0.8.3~31 X-Git-Url: https://git.novaco.in/?a=commitdiff_plain;h=7be0d4024b193f59f6156baafc593bc89d34d7f7;p=p2pool.git restore behaviour of dying in case of a "fatal error", which was accidentally removed in 4e331f1f9 --- diff --git a/p2pool/main.py b/p2pool/main.py index d7ba098..43f97cc 100644 --- a/p2pool/main.py +++ b/p2pool/main.py @@ -849,6 +849,7 @@ def main(args, net, datadir_path): status_thread() except: log.err(None, 'Fatal error:') + reactor.stop() def run(): class FixedArgumentParser(argparse.ArgumentParser):