diff options
Diffstat (limited to 'Demo/scripts/newslist.py')
-rwxr-xr-x | Demo/scripts/newslist.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Demo/scripts/newslist.py b/Demo/scripts/newslist.py index 4635f1d..7038380 100755 --- a/Demo/scripts/newslist.py +++ b/Demo/scripts/newslist.py @@ -172,10 +172,9 @@ def printtree(f, tree, indent, p): createpage(p[1:], tree, p) return - kl = list(tree.keys()) + kl = sorted(tree.keys()) if l > 1: - kl.sort() if indent > 0: # Create a sub-list f.write('<LI>'+p[1:]+'\n<UL>') |