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/cloudpipe | |
| 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/cloudpipe')
| -rw-r--r-- | nova/cloudpipe/pipelib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/cloudpipe/pipelib.py b/nova/cloudpipe/pipelib.py index 7d43866e6..0530be32c 100644 --- a/nova/cloudpipe/pipelib.py +++ b/nova/cloudpipe/pipelib.py @@ -53,7 +53,7 @@ cloudpipe_opts = [ ] FLAGS = flags.FLAGS -FLAGS.add_options(cloudpipe_opts) +FLAGS.register_opts(cloudpipe_opts) LOG = logging.getLogger('nova.cloudpipe') |
