Combine add_job and upload_file methods

This commit is contained in:
Brett Williams
2022-10-12 17:11:27 -07:00
parent fd6af10d56
commit 2181ce54a2
8 changed files with 159 additions and 112 deletions

View File

@@ -38,7 +38,7 @@ class BaseRenderWorker(object):
def version():
return 'Unknown'
def __init__(self, input_path, output_path, args=None, ignore_extensions=False):
def __init__(self, input_path, output_path, args=None, ignore_extensions=True):
if not ignore_extensions:
if not any(ext in input_path for ext in self.supported_extensions):