mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-27 06:12:19 +01:00
Fix if statement
This commit is contained in:
parent
80a8706714
commit
479e0bdf22
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ class CreateRenderlayer(Creator, plugin.MayaCreatorBase):
|
|||
# would only ever be called to say, 'hey, please refresh collect'
|
||||
|
||||
# Only allow a single render instance to exist
|
||||
if not self._get_singleton_node():
|
||||
if self._get_singleton_node():
|
||||
raise CreatorError("A Render instance already exists - only "
|
||||
"one can be configured.")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue