scaredyfish / blender-rhubarb-lipsync

Blender Rhubarb Lipsync is an addon for Blender integrating Rhubarb Lip Sync to automatically generate mouth-shape keyframes from a pose library.
194 stars 35 forks source link

Fix execution of subprocess.Popen() #4

Closed morevnaproject closed 6 years ago

morevnaproject commented 6 years ago

As outlined in https://docs.python.org/3/library/subprocess.html#subprocess.Popen - "args should be a sequence of program arguments or else a single string. By default, the program to execute is the first item in args if args is a sequence. If args is a string, the interpretation is platform-dependent."

This commit turns args into a sequence, which makes the plugin work correctly on POSIX systems (Linux/OSX).