diff options
Diffstat (limited to 'oslo_db/options.py')
-rw-r--r-- | oslo_db/options.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/oslo_db/options.py b/oslo_db/options.py index 5d8f74c..38e9024 100644 --- a/oslo_db/options.py +++ b/oslo_db/options.py @@ -10,8 +10,6 @@ # License for the specific language governing permissions and limitations # under the License. -import copy - from oslo_config import cfg @@ -219,4 +217,4 @@ def list_opts(): :returns: a list of (group_name, opts) tuples """ - return [('database', copy.deepcopy(database_opts))] + return [('database', database_opts)] |