summaryrefslogtreecommitdiffstats
path: root/bin/stack
diff options
context:
space:
mode:
authorJason Koelker <jason@koelker.net>2011-05-24 16:40:24 -0500
committerJason Koelker <jason@koelker.net>2011-05-24 16:40:24 -0500
commit8c8cefef4804ee9f67e4c4d4861e5af667577697 (patch)
tree30859234a733bb18c7c4212d1f4389f800809910 /bin/stack
parentf41f8d2be5239dd9d2810bfaf6f432c713907c7f (diff)
parent2b0af0ccf792dd2f0420fd8eaa6bc8be8a8671bf (diff)
merge with trey
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)