Fixed bug in status check in update_file_name
This commit is contained in:
parent
82cf88ee49
commit
9e6bd9c219
@ -148,7 +148,7 @@ def update_file_name(node):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
# Process only files that are not processing
|
# Process only files that are not processing
|
||||||
if node['properties']['status'] == 'processing':
|
if node['properties'].get('status', '') == 'processing':
|
||||||
return
|
return
|
||||||
|
|
||||||
def _format_name(name, override_ext, size=None, map_type=u''):
|
def _format_name(name, override_ext, size=None, map_type=u''):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user