removed colon from error message.

This commit is contained in:
morkt 2017-04-10 14:33:16 +04:00
parent 4cd05c152c
commit e10094bf8f

View File

@ -851,7 +851,7 @@ namespace GARbro.GUI
} }
catch (Exception X) catch (Exception X)
{ {
PopupError (string.Format("{0}:\n{1}", filename, X.Message), guiStrings.MsgErrorOpening); PopupError (string.Format("{0}\n{1}", filename, X.Message), guiStrings.MsgErrorOpening);
} }
} }