aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/livestreamer/plugins/ustreamtv.py
diff options
context:
space:
mode:
authorGravatar Dominik Dabrowski <dominik@silberrock.com>2012-04-19 18:25:55 +0200
committerGravatar Dominik Dabrowski <dominik@silberrock.com>2012-04-19 18:25:55 +0200
commit28d0110d44a9a78233dfc829d5510a2c02c264d1 (patch)
tree241c6d46dca964d82af0de9378b7e47f744bc928 /src/livestreamer/plugins/ustreamtv.py
parent9b9fcb92fe5d51d0b5f487f669bba34dcf8cb247 (diff)
Putting some organizational logic into the Plugin base class to automatically choose a 'best' quality
Diffstat (limited to 'src/livestreamer/plugins/ustreamtv.py')
-rw-r--r--src/livestreamer/plugins/ustreamtv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/livestreamer/plugins/ustreamtv.py b/src/livestreamer/plugins/ustreamtv.py
index 5f120f5..a30e695 100644
--- a/src/livestreamer/plugins/ustreamtv.py
+++ b/src/livestreamer/plugins/ustreamtv.py
@@ -23,7 +23,7 @@ class UStreamTV(Plugin):
if match:
return int(match.group(1))
- def get_streams(self):
+ def _get_streams(self):
def get_amf_value(data, key):
pattern = ("{0}\W\W\W(.+?)\x00").format(key)
match = re.search(bytes(pattern, "ascii"), data)