From 3ff3d2cb14c0478699cb502fd4ae378dbbc82888 Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Sun, 19 Apr 2020 19:12:51 -0400 Subject: [PATCH] Fix errant $ --- common/string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/string.cpp b/common/string.cpp index 17a326060d..31d7715f7e 100644 --- a/common/string.cpp +++ b/common/string.cpp @@ -173,7 +173,7 @@ wxString UnescapeString( const wxString& aSource ) else if( token == wxS( "brace" ) ) newbuf.append( wxS( "{" ) ); else { - newbuf.append( "${" + token + "}" ); + newbuf.append( "{" + token + "}" ); } } else