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

Commit

Permalink
Merge pull request #3364 from pypeclub/bugfix/harmony_audio_validator
Browse files Browse the repository at this point in the history
Harmony: audio validator has wrong logic
  • Loading branch information
kalisp authored Jun 17, 2022
2 parents a4ef21d + d230cb7 commit a6c0063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/hosts/harmony/plugins/publish/validate_audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ def process(self, instance):
formatting_data = {
"audio_url": audio_path
}
if os.path.isfile(audio_path):
if not os.path.isfile(audio_path):
raise PublishXmlValidationError(self, msg,
formatting_data=formatting_data)

0 comments on commit a6c0063

Please sign in to comment.