Fix for Arnold license sometimes detected as required for vray scenes

This commit is contained in:
David Kydd 2019-05-13 10:55:10 +12:00
Родитель 41dec4b2c9
Коммит 4c53775fe6
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -71,6 +71,10 @@ class AzureBatchEnvironment(object):
else:
self.licenses[license['label']] = False
#mtoa plugin is erroneously returned for some scenes when vray renderer is being used
if 'vrayformaya' in used_plugins:
self.licenses['Arnold'] = False
def configure(self, session, submission, assets):
"""Populate the current session of the environment tab.
Called on successful authentication.