Hi, The current planet code has a lot of bare except: clauses. While I can see how this is handy (so that you can log any error at all), it meants that the process can't be interrupted easily via Ctrl-C, because KeyboardError gets caught by the "except:" clause. -Mary