summaryrefslogtreecommitdiffstats
path: root/bin/stack
diff options
context:
space:
mode:
authorAnthony Young <sleepsonthefloor@gmail.com>2011-05-20 00:32:14 -0700
committerAnthony Young <sleepsonthefloor@gmail.com>2011-05-20 00:32:14 -0700
commitadf2ea5f1c76cc8bdbfbc11442512406cf6d9243 (patch)
treeb414fac606408618b2c4f7cca9d77864b170d87d /bin/stack
parent74bae1b1e2b298ef8425f7cb1aefd3826db40147 (diff)
parentff35d64de0228ed0ce7f0e617289d4423935fa3d (diff)
downloadnova-adf2ea5f1c76cc8bdbfbc11442512406cf6d9243.tar.gz
nova-adf2ea5f1c76cc8bdbfbc11442512406cf6d9243.tar.xz
nova-adf2ea5f1c76cc8bdbfbc11442512406cf6d9243.zip
merge with trunk
Diffstat (limited to 'bin/stack')
-rwxr-xr-xbin/stack2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/stack b/bin/stack
index d84a82e27..a1c6d1348 100755
--- a/bin/stack
+++ b/bin/stack
@@ -65,7 +65,7 @@ def format_help(d):
indent = MAX_INDENT - 6
out = []
- for k, v in d.iteritems():
+ for k, v in sorted(d.iteritems()):
if (len(k) + 6) > MAX_INDENT:
out.extend([' %s' % k])
initial_indent = ' ' * (indent + 6)