Fixed the one new thing PEP8 1.1 found

Change-Id: Iaa15bd47ff5ba48bd971ccc8c1707930977116df
This commit is contained in:
gholt
2012-05-25 00:19:02 +00:00
parent a74cd3b01b
commit 9c8afc8b0e

View File

@@ -233,7 +233,7 @@ class AccountController(object):
limit = int(given_limit)
if limit > ACCOUNT_LISTING_LIMIT:
self.logger.increment('GET.errors')
return HTTPPreconditionFailed(request=req,
return HTTPPreconditionFailed(request=req,
body='Maximum limit is %d' % ACCOUNT_LISTING_LIMIT)
marker = get_param(req, 'marker', '')
end_marker = get_param(req, 'end_marker')