Skip to content

Commit

Permalink
Fix the ConsolesController class doc string
Browse files Browse the repository at this point in the history
The code must have been copied from the console output extension to start
with and the old class doc string was left in place.

Change-Id: I4924e69763027043aace8e34aac55701be2ea823
Closes-bug: #1241685
  • Loading branch information
Lingxian Kong committed Oct 18, 2013
1 parent 531adcd commit 0a47253
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nova/api/openstack/compute/contrib/consoles.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def __init__(self, *args, **kwargs):

@wsgi.action('os-getVNCConsole')
def get_vnc_console(self, req, id, body):
"""Get text console output."""
"""Get vnc connection information to access a server."""
context = req.environ['nova.context']
authorize(context)

Expand All @@ -55,7 +55,7 @@ def get_vnc_console(self, req, id, body):

@wsgi.action('os-getSPICEConsole')
def get_spice_console(self, req, id, body):
"""Get text console output."""
"""Get spice connection information to access a server."""
context = req.environ['nova.context']
authorize(context)

Expand Down

0 comments on commit 0a47253

Please sign in to comment.