We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent cd1a432 commit 3338ac6Copy full SHA for 3338ac6
src/plugins/grass/qgsgrassmodule.cpp
@@ -1172,9 +1172,9 @@ void QgsGrassModule::run()
1172
1173
// Quote options with special characters so that user
1174
// can copy-paste-run the command
1175
- if (( *it ).contains( QRegExp( "[ <>\\$|;&]" ) ) )
+ if ( it->contains( QRegExp( "[ <>\\$|;&]" ) ) )
1176
{
1177
- argumentsHtml.append( "'" + *it + "'" );
+ argumentsHtml.append( "\"" + *it + "\"" );
1178
}
1179
else
1180
0 commit comments