diff options
| author | Daniel P. Berrange <berrange@redhat.com> | 2013-01-29 09:35:09 +0000 |
|---|---|---|
| committer | Daniel P. Berrange <berrange@redhat.com> | 2013-01-29 09:36:03 +0000 |
| commit | 39e35d78c8d24637422c41d8ad04ad669306d561 (patch) | |
| tree | dca2001de0cb64282ce0353f5a1f5f0c50391a6e | |
| parent | ce09c50c9253131396f713edbf11ca427341be0e (diff) | |
| download | nova-39e35d78c8d24637422c41d8ad04ad669306d561.tar.gz nova-39e35d78c8d24637422c41d8ad04ad669306d561.tar.xz nova-39e35d78c8d24637422c41d8ad04ad669306d561.zip | |
Change ''' to """ in bin/nova-{novncproxy,spicehtml5proxy}
Standard practice is for doc comment strings to be enclosed
in """ rather than '''. bin/nova-{novncproxy,spicehtml5proxy}
were exceptions to this.
Change-Id: I689063af2a51b26c971336b6fdbe60d5695b3ebc
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
| -rwxr-xr-x | bin/nova-novncproxy | 4 | ||||
| -rwxr-xr-x | bin/nova-spicehtml5proxy | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/bin/nova-novncproxy b/bin/nova-novncproxy index 657f97b48..617e2411d 100755 --- a/bin/nova-novncproxy +++ b/bin/nova-novncproxy @@ -16,10 +16,10 @@ # License for the specific language governing permissions and limitations # under the License. -''' +""" Websocket proxy that is compatible with OpenStack Nova noVNC consoles. Leverages websockify.py by Joel Martin -''' +""" import os import sys diff --git a/bin/nova-spicehtml5proxy b/bin/nova-spicehtml5proxy index 17f8cb7c2..405092942 100755 --- a/bin/nova-spicehtml5proxy +++ b/bin/nova-spicehtml5proxy @@ -16,10 +16,10 @@ # License for the specific language governing permissions and limitations # under the License. -''' +""" Websocket proxy that is compatible with OpenStack Nova SPICE HTML5 consoles. Leverages websockify.py by Joel Martin -''' +""" import os import sys |
