Fix image_utils.py's load_image() helper.

This commit is contained in:
Bastien Montagne 2018-09-10 17:34:48 +02:00
parent c0b61cf64b
commit fc95efec06
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ def load_image(imagepath,
path = os.path.abspath(path)
try:
image = bpy.data.images.load(path, check_existing)
image = bpy.data.images.load(path, check_existing=check_existing)
except RuntimeError:
image = None