From 8b4d75ba4e8d49599a7aa7ba704f1fd4f1951380 Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Thu, 26 Feb 2015 18:38:44 -0800 Subject: [PATCH] Typo in StrOpt docstring: Integer to String The docstring for StrOpt incorrectly lists the type as an Integer. Simple nit patch to set to String. Change-Id: Ibeca6ce2f67cae5b23bc3f91194df3d4b497fa38 --- oslo_config/cfg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oslo_config/cfg.py b/oslo_config/cfg.py index b51b4ec9..d9cfcee1 100644 --- a/oslo_config/cfg.py +++ b/oslo_config/cfg.py @@ -922,7 +922,7 @@ class DeprecatedOpt(object): class StrOpt(Opt): """Option with String type - Option with ``type`` :class:`oslo_config.types.Integer` + Option with ``type`` :class:`oslo_config.types.String` `Kept for backward-compatibility with options not using Opt directly`.