summaryrefslogtreecommitdiff
path: root/configshell
diff options
context:
space:
mode:
authorAndy Grover <agrover@redhat.com>2013-02-25 17:53:22 -0800
committerAndy Grover <agrover@redhat.com>2013-02-25 17:53:22 -0800
commit85b28fcf3188ef22795b48742bff135b267f435a (patch)
treee85c19d97742e55602f4ac85badb11a93d4e32ca /configshell
parent6507e289904bcc4698d30ad36fabff5d775d7280 (diff)
parente5ba65287a7f4373fd9576b77fd5258ab34c2448 (diff)
downloadconfigshell-fb-85b28fcf3188ef22795b48742bff135b267f435a.tar.gz
Merge remote branch 'gh/master' into devv1.1.fb7
Diffstat (limited to 'configshell')
-rw-r--r--configshell/node.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configshell/node.py b/configshell/node.py
index 42ee948..ccfba9f 100644
--- a/configshell/node.py
+++ b/configshell/node.py
@@ -810,7 +810,7 @@ class ConfigNode(object):
# Sort ending numbers numerically, so we get e.g. "lun1, lun2, lun10"
# instead of "lun1, lun10, lun2".
- children = sorted(root.children, key=lambda c: sorting_keys(c))
+ children = sorted(root.children, key=sorting_keys)
line = ""
for pipe in margin[:-1]: