Modify ↓
Opened 19 years ago
Closed 19 years ago
#1564 closed defect (fixed)
ModPythonHandler generates unsorted list of projects
Reported by: | Owned by: | Christopher Lenz | |
---|---|---|---|
Priority: | normal | Milestone: | 0.9 |
Component: | web frontend/mod_python | Version: | 0.8.1 |
Severity: | trivial | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
Default behaviour of ModPythonHandler is annoying when dealing with a larger number of repos. Here's a quick fix in diff format:
130c130,132 < for project in os.listdir(dir): —-
avail_projects = os.listdir(dir) avail_projects.sort() for project in avail_projects:
Attachments (1)
Change History (3)
by , 19 years ago
comment:1 by , 19 years ago
Status: | new → assigned |
---|
comment:2 by , 19 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
Fixed in [1678].