Ignore:
Timestamp:
18 Jun 2013, 10:37:46 (11 years ago)
Author:
Henrik Bettermann
Message:

ticket.weight must not be None.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/students/studylevel.py

    r10277 r10313  
    108108                if ticket.score < ticket.passmark:
    109109                    co_ticket = find_carry_over(ticket)
    110                     if co_ticket is not None:
     110                    if co_ticket is not None and co_ticket.weight is not None:
    111111                        credits_counted += co_ticket.credits
    112112                        weighted_credits += co_ticket.credits * co_ticket.weight
Note: See TracChangeset for help on using the changeset viewer.