Make mpv error check cover all parsing fails

This commit is contained in:
Et0h 2014-08-31 20:33:11 +01:00
parent 3630138167
commit c026be1114

View File

@ -126,7 +126,7 @@ class MplayerPlayer(BasePlayer):
return u'"{}"'.format(arg)
def lineReceived(self, line):
if line == "Error parsing option slave-broken (option not found)":
if "Error parsing option" in line:
self.quitReason = getMessage("mpv-version-error")
match = self.RE_ANSWER.match(line)