Logging function does not correctly log the first choice in menus

Bug #930475 reported by Spiky Caterpillar
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Ren'Py
Fix Released
Medium
Tom Rothamel

Bug Description

When logging, all menu choices except the first will have 'Choice: ' prepended.

To fix so that all choices have Choice: prepended, change the relevant bit in renpy.exports.display_menu() to:

    # Log the chosen choice.
    for label, val in items:
        if val is not None:
            log("Choice: " + label)
        else:
            log(label)

Revision history for this message
Tom Rothamel (renpytom) wrote :

Took the fix for 6.13.9.

Thank you.

Changed in renpy:
status: New → Fix Committed
importance: Undecided → Medium
assignee: nobody → Tom Rothamel (renpytom)
milestone: none → 6.13.9
Tom Rothamel (renpytom)
Changed in renpy:
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.