Cleanup: single quotes for enums

This commit is contained in:
Campbell Barton
2015-03-30 10:44:57 +11:00
parent 3204aff6d0
commit ab9d903b99
5 changed files with 13 additions and 13 deletions

View File

@@ -924,7 +924,7 @@ class LodGenerate(Operator):
lod.location.y = ob.location.y + 3.0 * i
if i == 1:
modifier = lod.modifiers.new("lod_decimate", "DECIMATE")
modifier = lod.modifiers.new("lod_decimate", 'DECIMATE')
else:
modifier = lod.modifiers[-1]