From 24510c6e00c20362ffd528088fd055575dbbcbbe Mon Sep 17 00:00:00 2001 From: Brian Granger Date: Thu, 8 Mar 2012 11:31:04 -0800 Subject: [PATCH] Sort profiles in cluster tab. --- IPython/frontend/html/notebook/clustermanager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/IPython/frontend/html/notebook/clustermanager.py b/IPython/frontend/html/notebook/clustermanager.py index c98953312..b2ab3b201 100644 --- a/IPython/frontend/html/notebook/clustermanager.py +++ b/IPython/frontend/html/notebook/clustermanager.py @@ -86,6 +86,7 @@ class ClusterManager(LoggingConfigurable): def list_profiles(self): self.update_profiles() result = [self.profile_info(p) for p in self.profiles.keys()] + result.sort() return result def check_profile(self, profile):