From fd6d15790a93c3089b914c84e27a677951cecfa7 Mon Sep 17 00:00:00 2001 From: Et0h Date: Mon, 16 Feb 2015 23:57:51 +0000 Subject: [PATCH] Fix mpv with file [#53] --- syncplay/players/mplayer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/players/mplayer.py b/syncplay/players/mplayer.py index 54007b1..2701619 100644 --- a/syncplay/players/mplayer.py +++ b/syncplay/players/mplayer.py @@ -264,7 +264,7 @@ class MplayerPlayer(BasePlayer): call = [playerPath] if filePath: - call.extend(filePath) + call.extend([filePath]) call.extend(playerController.getStartupArgs(playerPath)) if args: call.extend(args)