Don't start the mplayer pipe with shell=True

This commit is contained in:
Fabio Manganiello 2019-02-02 16:06:56 +01:00
parent 7068530eb0
commit d0a288b423
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ class MediaMplayerPlugin(MediaPlugin):
if self._env:
env.update(self._env)
self._mplayer = subprocess.Popen(args, env=env, shell=True,
self._mplayer = subprocess.Popen(args, env=env,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE)