Add missing parentheses

There was a ")" missing in the comment.

Change-Id: Idf22ec27e17cfe7ecee81842f0373d0411f51779
This commit is contained in:
Rodrigo Duarte Sousa 2017-01-24 07:53:31 -03:00
parent f7bc5bad7d
commit 35deec22f8
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ class ProjectV3(controller.V3Controller):
def list_projects(self, request, filters):
hints = ProjectV3.build_driver_hints(request, filters)
# If 'is_domain' has not been included as a query, we default it to
# False (which in query terms means '0'
# False (which in query terms means '0')
if 'is_domain' not in request.params:
hints.add_filter('is_domain', '0')
refs = self.resource_api.list_projects(hints=hints)