diff options
author | John Herndon <john.herndon@hp.com> | 2013-02-22 21:00:47 +0000 |
---|---|---|
committer | John Herndon <john.herndon@hp.com> | 2013-02-22 21:00:47 +0000 |
commit | cb6667b22d589cdcd3b91b9101ab4ce38a490ca5 (patch) | |
tree | 9276d6a69e8988bb7f447fbb68886b8853979257 | |
parent | 95b7d2c06eaebfd974eae3cd7ddf707bed332f47 (diff) | |
download | nova-cb6667b22d589cdcd3b91b9101ab4ce38a490ca5.tar.gz nova-cb6667b22d589cdcd3b91b9101ab4ce38a490ca5.tar.xz nova-cb6667b22d589cdcd3b91b9101ab4ce38a490ca5.zip |
Remove Print Statement
Removing a rogue print statement that I missed
in a previous commit
Change-Id: I472944d90937d8b6484f3ec419cdd5083db533c5
-rw-r--r-- | nova/compute/api.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/nova/compute/api.py b/nova/compute/api.py index f917e379d..62bcc482a 100644 --- a/nova/compute/api.py +++ b/nova/compute/api.py @@ -2208,7 +2208,6 @@ class API(base.Base): """Get a url to an instance Console.""" connect_info = self.compute_rpcapi.get_spice_console(context, instance=instance, console_type=console_type) - print connect_info self.consoleauth_rpcapi.authorize_console(context, connect_info['token'], console_type, connect_info['host'], connect_info['port'], |