summaryrefslogtreecommitdiff
path: root/saharaclient/api/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'saharaclient/api/base.py')
-rw-r--r--saharaclient/api/base.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/saharaclient/api/base.py b/saharaclient/api/base.py
index d743b60..237307c 100644
--- a/saharaclient/api/base.py
+++ b/saharaclient/api/base.py
@@ -187,10 +187,10 @@ class ResourceManager(object):
prev = meta.get('prev')
next = meta.get('next')
- l = [self.resource_class(self, res)
- for res in data]
+ li = [self.resource_class(self, res)
+ for res in data]
- return Page(l, prev, next, limit)
+ return Page(li, prev, next, limit)
else:
self._raise_api_exception(resp)