From 1275a1bd3944225f4ce4e82bb5e710d19bb56745 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Fri, 10 Feb 2012 12:18:47 -0800 Subject: [PATCH] Fixed pep8 warnings. --- devstack/components/novnc.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/devstack/components/novnc.py b/devstack/components/novnc.py index d509129b..17f045f1 100644 --- a/devstack/components/novnc.py +++ b/devstack/components/novnc.py @@ -35,10 +35,10 @@ APP_OPTIONS = { VNC_PROXY_APP: ['--flagfile', '%NOVA_CONF%', '--web', '.'], } -#the pkg json files novnc requires for installation +#the pkg json files no-vnc requires for installation REQ_PKGS = ['n-vnc.json'] -#pip files that nova requires +#pip files that no-vnc requires REQ_PIPS = ['general.json', 'n-vnc.json'] @@ -65,6 +65,7 @@ class NoVNCInstaller(comp.PkgInstallComponent): def _get_pips(self): return list(REQ_PIPS) + class NoVNCRuntime(comp.ProgramRuntime): def __init__(self, *args, **kargs): comp.ProgramRuntime.__init__(self, TYPE, *args, **kargs)