Ignore:
Timestamp:
22 Dec 2011, 07:39:00 (13 years ago)
Author:
Henrik Bettermann
Message:

The result list instance has to be created before concatenating with [curr_course,]. Now all tests pass.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/applicants/vocabularies.py

    r7350 r7434  
    5858        result = catalog.searchResults(
    5959            application_category=(appcat,appcat))
     60        result = sorted(result, key=lambda value: value.code)
    6061        curr_course = context.course1
    6162        if curr_course is not None and curr_course not in result:
     
    6364            # (any more)
    6465            result = [curr_course,] + result
    65         return sorted(result, key=lambda value: value.code)
     66        return result
Note: See TracChangeset for help on using the changeset viewer.