Skip to content

Commit 81a8bc0

Browse files
committedJan 28, 2019
Small fix
1 parent 3c8d5eb commit 81a8bc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/qgsjsonutils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ QString QgsJsonExporter::exportFeatures( const QgsFeatureList &features ) const
243243
featureJSON << exportFeature( feature );
244244
}
245245

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

249249

0 commit comments

Comments
 (0)
Please sign in to comment.