From 90e6e7afd62a598b76472862a4eea7a504cbf9b5 2011-08-23 19:53:46 From: Ben Edwards Date: 2011-08-23 19:53:46 Subject: [PATCH] Added import time to IPython/parallel/apps/launcher.py In a recent commit time.sleep(self.delay) was added to LocalEngineSetLauncher.start() and SSHEngineSetLauncher.start() but time was never imported causing ipcluster and anything that calls the engine launcher to fail. Added the import line --- diff --git a/IPython/parallel/apps/launcher.py b/IPython/parallel/apps/launcher.py index 2efee30..fdfe63e 100644 --- a/IPython/parallel/apps/launcher.py +++ b/IPython/parallel/apps/launcher.py @@ -24,6 +24,7 @@ import logging import os import re import stat +import time # signal imports, handling various platforms, versions