Fix the issue with stats API call

Initial version of stats API method retuned dict,
but last version return an array.

Change-Id: Ic9e8e8ab2ed7166825b82479951919ecdb26f447
This commit is contained in:
Georgy Okrokvertskhov 2014-04-16 20:10:41 -07:00
parent 5268e6b9a0
commit 9df5c10e01
1 changed files with 1 additions and 1 deletions

View File

@ -27,4 +27,4 @@ class RequestStatisticsManager(base.Manager):
resource_class = RequestStatistics
def list(self):
return self._list('/v1/stats', 'stats')
return self._list('/v1/stats')