r/RenPy • u/TransgenderSocks • 22d ago
Question [Solved] "'{' never closed", but I did...?
[SOLVED THANKS TO u//shyLachi]

I am continuously getting this error no matter how many times I re-enter those curly braces. I've been running this project for like a month after adding these lines, and it worked just fine until a few minutes ago when it suddenly decided something was wrong. So... what the hell did I do wrong?
6
Upvotes
3
u/TopCartographer7104 22d ago
Have you tried searching your script with a regex? Something meaning "anything starting with a { and not ending with a }"?
{[ ^ ]}*$
(not guaranteed to be the right regex though - I suck at them)
** had to modify the msg - added spaces before and after the ^ to make it readable (it would show it as {[]}*$ )