Skip to content
This repository has been archived by the owner on Feb 26, 2022. It is now read-only.

Commit

Permalink
Merge pull request #664 from wbamberg/804683-regression-stabilization
Browse files Browse the repository at this point in the history
Fix Python 2.5 regression from bug 804683
  • Loading branch information
Mossop committed Nov 23, 2012
2 parents 956ede2 + 8f76685 commit d8fee65
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python-lib/cuddlefish/docs/documentationitem.py
Expand Up @@ -2,7 +2,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import sys, os, re, json
import sys, os, re

class DocumentationItemInfo(object):
def __init__(self, env_root, md_path, filename):
Expand Down Expand Up @@ -107,6 +107,7 @@ def get_module_list(env_root):
package_docs = os.sep.join([packages_root, entry, "docs"])
if os.path.exists(package_docs):
get_modules_in_package(env_root, package_docs, module_list, False)
module_list.sort(key=lambda x: x.name())
return module_list

def get_devguide_list(env_root):
Expand Down

0 comments on commit d8fee65

Please sign in to comment.