From 376569607f5f6f323f1259ffd1ce571ac2c7e823 Mon Sep 17 00:00:00 2001 From: "ChangBo Guo(gcb)" Date: Thu, 3 Apr 2014 17:40:36 +0800 Subject: [PATCH] Remove rendundant parentheses of cfg help strings There is a hacking review https://review.openstack.org/#/c/74493/. That makes me be aware we maybe have rendunant parentheses. We'd better clean the parentheses, Python will handle that well. Change-Id: I275aaa49450d8088d93b3e19138850c359a4abae --- openstack/common/lockutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack/common/lockutils.py b/openstack/common/lockutils.py index 684db34..f7659a6 100644 --- a/openstack/common/lockutils.py +++ b/openstack/common/lockutils.py @@ -41,7 +41,7 @@ util_opts = [ help='Whether to disable inter-process locks'), cfg.StrOpt('lock_path', default=os.environ.get("OSLO_LOCK_PATH"), - help=('Directory to use for lock files.')) + help='Directory to use for lock files.') ]