From a80cca0fb3ea8bf81a7b426afe32ea30594afae8 Mon Sep 17 00:00:00 2001 From: Nyall Dawson Date: Mon, 6 Feb 2017 09:28:15 +1000 Subject: [PATCH] Fix indentation --- src/providers/postgres/qgspostgresprovider.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/postgres/qgspostgresprovider.cpp b/src/providers/postgres/qgspostgresprovider.cpp index ea9a33aa3aa9..992c6ca8d60f 100644 --- a/src/providers/postgres/qgspostgresprovider.cpp +++ b/src/providers/postgres/qgspostgresprovider.cpp @@ -4093,7 +4093,7 @@ static QVariant parseArray( const QString& txt, QVariant::Type type, QVariant::T { if ( !txt.startsWith( '{' ) || !txt.endsWith( '}' ) ) { - if( !txt.isEmpty() ) + if ( !txt.isEmpty() ) QgsLogger::warning( "Error parsing array, missing curly braces: " + txt ); return QVariant( type ); }