From 0c0b74b169d8c900258e3cdcfadeb49d011f4d90 Mon Sep 17 00:00:00 2001 From: Murphy McCauley Date: Sun, 29 Jan 2012 18:06:33 -0800 Subject: [PATCH] Fix quitting when using --no-cli This previously silently caused an exception and POX was not properly shut down. --- pox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pox.py b/pox.py index 5570e6e3d..345b60b30 100755 --- a/pox.py +++ b/pox.py @@ -347,7 +347,7 @@ def main (): #core.scheduler._thread.join() # Sleazy try: - pox.core.core.quit() + core.quit() except: pass