diff options
| author | David Ripton <dripton@redhat.com> | 2012-11-15 16:22:59 -0500 |
|---|---|---|
| committer | David Ripton <dripton@redhat.com> | 2012-11-16 13:58:53 -0500 |
| commit | 3da5e5bed917b62701ffa96034912917aeb9182b (patch) | |
| tree | 919f082aa2dbb085513461ebca2686e25ab6bb7d /nova | |
| parent | beacd8b668fc5aaef5ee49677add1dde49582b92 (diff) | |
Change a toplevel function comment to a docstring.
Change-Id: Ifb224d6655bf39ddf2f6f6a9ca63a37c13e8b687
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/db/sqlalchemy/api.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nova/db/sqlalchemy/api.py b/nova/db/sqlalchemy/api.py index eb1247e7d..89c4cfcda 100644 --- a/nova/db/sqlalchemy/api.py +++ b/nova/db/sqlalchemy/api.py @@ -1153,8 +1153,9 @@ def fixed_ip_get_by_address(context, address, session=None): @require_admin_context def fixed_ip_get_by_address_detailed(context, address, session=None): - # This method returns a tuple of (models.FixedIp, models.Network, - # models.Instance). + """ + :returns: a tuple of (models.FixedIp, models.Network, models.Instance) + """ if not session: session = get_session() |
