Skip to content

Commit 1d84978

Browse files
committed
expressions: put black in front of ELSE (fixes #9666)
1 parent 82862a6 commit 1d84978

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/qgsexpression.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2343,7 +2343,7 @@ QString QgsExpression::NodeCondition::dump() const
23432343
msg += QString( "WHEN %1 THEN %2" ).arg( cond->mWhenExp->dump() ).arg( cond->mThenExp->dump() );
23442344
}
23452345
if ( mElseExp )
2346-
msg += QString( "ELSE %1" ).arg( mElseExp->dump() );
2346+
msg += QString( " ELSE %1" ).arg( mElseExp->dump() );
23472347
msg += QString( " END" );
23482348
return msg;
23492349
}

0 commit comments

Comments
 (0)