forked from platypush/platypush
Don't start the mplayer pipe with shell=True
This commit is contained in:
parent
7068530eb0
commit
d0a288b423
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ class MediaMplayerPlugin(MediaPlugin):
|
||||||
if self._env:
|
if self._env:
|
||||||
env.update(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,
|
stdin=subprocess.PIPE,
|
||||||
stdout=subprocess.PIPE)
|
stdout=subprocess.PIPE)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue