Skip to content

Commit 66e3103

Browse files
committed
fix 2.79 compat: dont use format string
1 parent daddf03 commit 66e3103

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

io_export_objex2/interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ def reset_input_flag_lists():
449449
for cycle in (CST.CYCLE_COLOR,CST.CYCLE_ALPHA):
450450
for variable in ('A','B','C','D'):
451451
if material.name == traceMaterialName:
452-
log.trace(f'setting {material.name} -> {node.label} -> {input.name} input_flags_%s_%s to _' % (cycle, variable))
452+
log.trace('setting %s -> %s -> %s input_flags_%s_%s to _' % (material.name, node.label, input.name, cycle, variable))
453453
setattr(input, 'input_flags_%s_%s' % (cycle, variable), '_')
454454

455455
if bpy.app.version < (2, 80, 0):

0 commit comments

Comments
 (0)