diff options
author | David Ripton <dripton@redhat.com> | 2012-10-31 13:14:52 -0400 |
---|---|---|
committer | David Ripton <dripton@redhat.com> | 2012-10-31 13:14:52 -0400 |
commit | d7b63972c77cae255872f0837cb043361da47cb2 (patch) | |
tree | 529c1ab996fab8482647036142d3034ebe5c93e3 /openstack | |
parent | ae6f54dba69449eb1c231de162c12711bd2ab528 (diff) | |
download | oslo-d7b63972c77cae255872f0837cb043361da47cb2.tar.gz oslo-d7b63972c77cae255872f0837cb043361da47cb2.tar.xz oslo-d7b63972c77cae255872f0837cb043361da47cb2.zip |
Add a missing comma in a docstring.
Change-Id: I1f75c7da1ab1543637198ecbb80a81b39ad35fde
Diffstat (limited to 'openstack')
-rw-r--r-- | openstack/common/cfg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/cfg.py b/openstack/common/cfg.py index 5adbb9a..1d67514 100644 --- a/openstack/common/cfg.py +++ b/openstack/common/cfg.py @@ -239,7 +239,7 @@ in order to support a common usage pattern in OpenStack: from openstack.common import cfg opts = [ - cfg.StrOpt('bind_host' default='0.0.0.0'), + cfg.StrOpt('bind_host', default='0.0.0.0'), cfg.IntOpt('bind_port', default=9292), ] |