Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
fix invalid scope in validate scene settings
Browse files Browse the repository at this point in the history
  • Loading branch information
antirotor authored Aug 12, 2020
1 parent 1db9d9e commit 58cd5f8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pype/plugins/harmony/publish/validate_scene_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,11 @@ def process(self, instance):
expected_settings["frameEnd"] = frame_end - frame_start + 1
expected_settings["frameStart"] = 1



self.log.info(instance.context.data['anatomyData']['asset'])

if any(string in instance.context.data['anatomyData']['asset']
for string in frame_check_filter):
expected_settings.pop("frameEnd")
for string in self.frame_check_filter):
expected_settings.pop("frameEnd")

func = """function func()
{
Expand Down

0 comments on commit 58cd5f8

Please sign in to comment.