From 5530d33fc4a971da772363ea2d8cdf34263f545c Mon Sep 17 00:00:00 2001 From: Sandy Walsh Date: Thu, 4 Sep 2014 20:34:56 +0000 Subject: [PATCH] cleaned up stream get operation --- quince/v1_impl.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/quince/v1_impl.py b/quince/v1_impl.py index ac7f2e0..cb5067c 100644 --- a/quince/v1_impl.py +++ b/quince/v1_impl.py @@ -37,7 +37,8 @@ class Impl(object): return self.driver.find_streams(**kwargs) def get_stream(self, stream_id, details): - return None + # Returns a list, but should be just one stream. + return self.driver.get_stream(stream_id, details) def delete_stream(self, stream_id): pass