Activity log for bug #1223177

Date Who What changed Old value New value Message
2013-09-10 04:59:49 Nolan Lemahn bug added bug
2013-09-13 03:49:59 Nolan Lemahn description The following code can be used to view the problem. (It will need to be in a label.) $ nvln = NVLCharacter(None, kind=nvl) nvln "%%I am a test narrator typing this text with nvl.\n" extend "You can take this line out or leave it in. The newlines also do not matter.\n" extend "%%This line crashes the game." With the error: File "game/script_1a.rpy", line 175, in script File "renpy/common/00library.rpy", line 59, in python ValueError: unsupported format character 'T' (0x54) at index 139 Note: The T does correspond to the T in "This line"; changing "This line" to "kThis line" changes the unsupported format character to 'k' in the ValueError. The following code can be used to view the problem. (It will need to be in a label.) #start code     $ nvln = NVLCharacter(None, kind=nvl)     nvln "%%I am a test narrator typing this text with nvl.\n"     extend "You can take this line out or leave it in. The newlines also do not matter.\n"     extend "%%This line crashes the game." #end code With the error:   File "game/script_1a.rpy", line 175, in script   File "renpy/common/00library.rpy", line 59, in python ValueError: unsupported format character 'T' (0x54) at index 139 Note: The T does correspond to the T in "This line"; changing "This line" to "kThis line" changes the unsupported format character to 'k' in the ValueError. #start code $ nvln = NVLCharacter(None, kind=nvl) nvln "%%Oddly enough...{w}\n%%THIS doesn't crash the game!" #end code
2013-09-13 04:07:39 Tom Rothamel renpy: status New Invalid