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/image | |
| 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/image')
| -rw-r--r-- | nova/image/s3.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/image/s3.py b/nova/image/s3.py index 2be1b5ede..33dfdfff0 100644 --- a/nova/image/s3.py +++ b/nova/image/s3.py @@ -55,7 +55,7 @@ s3_opts = [ ] FLAGS = flags.FLAGS -FLAGS.add_options(s3_opts) +FLAGS.register_opts(s3_opts) class S3ImageService(object): |
