Commit 354c0a8a by Mariusz Kupidura

Merge pull request #42 from RealFatCat/master

Exit by pressing Ctrl+D
parents b2ccbe80 ae753444
......@@ -86,7 +86,7 @@ class BaseInterpreter(object):
command_handler(args)
except RoutersploitException as err:
utils.print_error(err)
except KeyboardInterrupt:
except (KeyboardInterrupt, EOFError):
print()
utils.print_status("routersploit stopped")
break
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment