diff options
author | Christopher Rosell <chrippa@tanuki.se> | 2012-09-20 19:40:08 +0200 |
---|---|---|
committer | Christopher Rosell <chrippa@tanuki.se> | 2012-09-20 19:40:08 +0200 |
commit | ced31eaf2e2b6f5c4fe82ef40aa238dbaac8056a (patch) | |
tree | dc964b8795c26c33fd1fa808746e7f09af548f08 | |
parent | d00d0ad02007597393f1c1b7d2a87bd985619f3d (diff) |
Fix missing imports from last commit.
-rw-r--r-- | src/livestreamer/stream/http.py | 2 | ||||
-rw-r--r-- | src/livestreamer/stream/rtmpdump.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/livestreamer/stream/http.py b/src/livestreamer/stream/http.py index ab9a763..f6fce57 100644 --- a/src/livestreamer/stream/http.py +++ b/src/livestreamer/stream/http.py @@ -1,4 +1,4 @@ -from . import Stream +from . import Stream, StreamError from ..utils import urlget class HTTPStream(Stream): diff --git a/src/livestreamer/stream/rtmpdump.py b/src/livestreamer/stream/rtmpdump.py index 68ed969..d0ceef6 100644 --- a/src/livestreamer/stream/rtmpdump.py +++ b/src/livestreamer/stream/rtmpdump.py @@ -1,4 +1,4 @@ -from . import StreamProcess +from . import StreamProcess, StreamError from ..compat import str, is_win32 import pbs |