cleaned up stream get operation

This commit is contained in:
Sandy Walsh 2014-09-04 20:34:56 +00:00
parent f3322b7e8e
commit 5530d33fc4
1 changed files with 2 additions and 1 deletions

View File

@ -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