From 7b48971438218b800334aab63bf7229a7a7066be 2012-06-13 20:47:43 From: MinRK Date: 2012-06-13 20:47:43 Subject: [PATCH] Change distressing / inaccurate debug message about overwriting profiles --- diff --git a/IPython/frontend/html/notebook/clustermanager.py b/IPython/frontend/html/notebook/clustermanager.py index 7e4f428..404eaf4 100644 --- a/IPython/frontend/html/notebook/clustermanager.py +++ b/IPython/frontend/html/notebook/clustermanager.py @@ -80,7 +80,7 @@ class ClusterManager(LoggingConfigurable): for profile in list_profiles_in(path): pd = self.get_profile_dir(profile, path) if profile not in self.profiles: - self.log.debug("Overwriting profile %s" % profile) + self.log.debug("Adding cluster profile '%s'" % profile) self.profiles[profile] = { 'profile': profile, 'profile_dir': pd,