From d1888a3359345acffd8d0845c137eefd88072112 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Fri, 3 Feb 2012 00:50:58 +0000 Subject: 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 --- nova/image/s3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/image') 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): -- cgit