aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/livestreamer/stream/http.py
diff options
context:
space:
mode:
authorGravatar Christopher Rosell <chrippa@tanuki.se>2012-09-20 19:40:08 +0200
committerGravatar Christopher Rosell <chrippa@tanuki.se>2012-09-20 19:40:08 +0200
commitced31eaf2e2b6f5c4fe82ef40aa238dbaac8056a (patch)
treedc964b8795c26c33fd1fa808746e7f09af548f08 /src/livestreamer/stream/http.py
parentd00d0ad02007597393f1c1b7d2a87bd985619f3d (diff)
Fix missing imports from last commit.
Diffstat (limited to 'src/livestreamer/stream/http.py')
-rw-r--r--src/livestreamer/stream/http.py2
1 files changed, 1 insertions, 1 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):