Removed logging when file is outside project path

This commit is contained in:
Sybren A. Stüvel 2017-01-19 15:04:12 +01:00
parent 4608204f1d
commit 51cf097c8f

View File

@ -371,7 +371,6 @@ def _render_output_path(
try: try:
proj_rel = blendfile.parent.relative_to(project_path) proj_rel = blendfile.parent.relative_to(project_path)
except ValueError: except ValueError:
log.exception('Current file is outside of project path %s', project_path)
return None return None
rel_parts = proj_rel.parts[flamenco_job_output_strip_components:] rel_parts = proj_rel.parts[flamenco_job_output_strip_components:]