diff options
author | Mark McLoughlin <markmc@redhat.com> | 2012-02-03 00:50:58 +0000 |
---|---|---|
committer | Mark McLoughlin <markmc@redhat.com> | 2012-02-10 06:31:56 +0000 |
commit | d1888a3359345acffd8d0845c137eefd88072112 (patch) | |
tree | 9fc7502d4feefa603dbf7435b6f11599b255bcc1 /nova/service.py | |
parent | 5ad971810aaedcf5c9efd1b56add0e23921899ae (diff) | |
download | nova-d1888a3359345acffd8d0845c137eefd88072112.tar.gz nova-d1888a3359345acffd8d0845c137eefd88072112.tar.xz nova-d1888a3359345acffd8d0845c137eefd88072112.zip |
Remove the last of the gflags shim layer
Make FLAGS a ConfigOpts instance and fix up all the places where we
expected FlagValues behaviour.
Change-Id: I8f96f42e0d8d30ba6b362d29861e717cf0fa9e89
Diffstat (limited to 'nova/service.py')
-rw-r--r-- | nova/service.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/service.py b/nova/service.py index 5dcaf21bd..dd943f952 100644 --- a/nova/service.py +++ b/nova/service.py @@ -76,7 +76,7 @@ service_opts = [ ] FLAGS = flags.FLAGS -FLAGS.add_options(service_opts) +FLAGS.register_opts(service_opts) class Launcher(object): |