Skip to content

Commit

Permalink
fix: system is a function not a property
Browse files Browse the repository at this point in the history
  • Loading branch information
scaredyfish committed Apr 27, 2020
1 parent ff51f2f commit 752c6d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prefs_blender_rhubarb.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class RhubarbAddonPreferences(AddonPreferences):
executable_path : StringProperty(
name="Rhubarb lipsync executable",
subtype='FILE_PATH',
default=bpy.utils.user_resource('SCRIPTS', "addons") + '/blender-rhubarb-lipsync/bin/rhubarb' + ('.exe' if system == 'Windows' else '')
default=bpy.utils.user_resource('SCRIPTS', "addons") + '/blender-rhubarb-lipsync/bin/rhubarb' + ('.exe' if system() == 'Windows' else '')
)

recognizer : EnumProperty(
Expand Down

0 comments on commit 752c6d2

Please sign in to comment.