aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/livestreamer/cli.py2
-rw-r--r--src/livestreamer/plugins/justintv.py3
2 files changed, 4 insertions, 1 deletions
diff --git a/src/livestreamer/cli.py b/src/livestreamer/cli.py
index 24b5c85..6a886e5 100644
--- a/src/livestreamer/cli.py
+++ b/src/livestreamer/cli.py
@@ -137,7 +137,7 @@ def check_output(output, force):
try:
out = open(output, "wb")
except IOError as err:
- exit(("Failed to open file {0} - ").format(output, err))
+ exit(("Failed to open file {0} - {1}").format(output, err))
return out
diff --git a/src/livestreamer/plugins/justintv.py b/src/livestreamer/plugins/justintv.py
index 4fe93be..3eef869 100644
--- a/src/livestreamer/plugins/justintv.py
+++ b/src/livestreamer/plugins/justintv.py
@@ -121,6 +121,9 @@ class JustinTV(Plugin):
for child in node.childNodes:
info[child.tagName] = self._get_node_text(child)
+ if not ("connect" in info and "play" in info):
+ continue
+
stream = RTMPStream(self.session, {
"rtmp": ("{0}/{1}").format(info["connect"], info["play"]),
"swfUrl": self.SWFURL,