summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorWilliam Wolf <throughnothing@gmail.com>2011-06-01 10:31:53 -0400
committerWilliam Wolf <throughnothing@gmail.com>2011-06-01 10:31:53 -0400
commit3fa4ece45eea12f0923c55d87130c668bafd2751 (patch)
tree2f02a211f9bebf0c6db4353f23c5951df4f6b967 /nova/api
parentb8f2f8d63608d76af41fd218dddb955bdc656354 (diff)
fix pep8 issues
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/api/openstack/common.py b/nova/api/openstack/common.py
index 69877cbce..b0d368dfa 100644
--- a/nova/api/openstack/common.py
+++ b/nova/api/openstack/common.py
@@ -39,13 +39,13 @@ XML_NS_V11 = 'http://docs.openstack.org/compute/api/v1.1'
def get_pagination_params(request):
"""
Return marker, limit tuple from request
-
+
@param request: `wsgi.Request` possibly containing 'marker' and 'limit'
GET variables. 'marker' is the id of the last element
the client has seen, and 'limit' is the maximum number
of items to return. If 'limit' is not specified, 0, or
> max_limit, we default to max_limit. Negative values
- for either marker or limit will cause
+ for either marker or limit will cause
exc.HTTPBadRequest() exceptions to be raised.
"""
try: