Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Small fix
  • Loading branch information
pblottiere committed Jan 28, 2019
1 parent 3c8d5eb commit 81a8bc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsjsonutils.cpp
Expand Up @@ -243,7 +243,7 @@ QString QgsJsonExporter::exportFeatures( const QgsFeatureList &features ) const
featureJSON << exportFeature( feature );
}

return QStringLiteral( "{\"type\": \"FeatureCollection\",\n \"features\":[\n%2\n]}" ).arg( featureJSON.join( QStringLiteral( ",\n" ) ) );
return QStringLiteral( "{ \"type\": \"FeatureCollection\",\n \"features\":[\n%1\n]}" ).arg( featureJSON.join( QStringLiteral( ",\n" ) ) );
}


Expand Down

0 comments on commit 81a8bc0

Please sign in to comment.