Making exception popups multiline

Del69

Chieftain
Joined
Oct 6, 2008
Messages
34
Location
Covington, WA
Not sure what is causing this but whenever I get a python exception popup in game instead of having the whole exception text in 1 box like its supposed to, it pops up a seperate box for each line of the exception.

Like this error

Traceback (most recent call last):
File "<string>", line 1, in ?
File "CvScreensInterface", line 3, in ?
File "<string>", line 52, in load_module
File "CvMainInterface", line 7, in ?
File "<string>", line 52, in load_module
File "CvEventInterface", line 13, in ?
File "<string>", line 52, in load_module
File "CvEventManager", line 25, in ?
File "<string>", line 35, in load_module
File "<string>", line 13, in _get_code
File "
CvOverlayScreen
", line
184

Should all be in 1 popup box but instead I get

File "<string>", line 1, in ?

In the first popup,

File "CvScreensInterface", line 3, in ?

In the second popup etc.

Very annoying I tell you. Does anybody have any Idea how to fix this? For now I've just got the exceptions turned off and look in the log for them but its kinda a pain.
 
Top Bottom