Fix typo in assert that we do not delete master collection..

This commit is contained in:
Bastien Montagne 2018-11-09 18:31:51 +01:00
parent 89a66633f1
commit 615e383ec2
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ bool BKE_collection_delete(Main *bmain, Collection *collection, bool hierarchy)
{
/* Master collection is not real datablock, can't be removed. */
if (collection->flag & COLLECTION_IS_MASTER) {
BLI_assert("!Scene master collection can't be deleted");
BLI_assert(!"Scene master collection can't be deleted");
return false;
}