From ced31eaf2e2b6f5c4fe82ef40aa238dbaac8056a Mon Sep 17 00:00:00 2001 From: Christopher Rosell Date: Thu, 20 Sep 2012 19:40:08 +0200 Subject: Fix missing imports from last commit. --- src/livestreamer/stream/http.py | 2 +- 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 -- cgit v1.2.3