diff options
| author | Monty Taylor <mordred@inaugust.com> | 2013-01-11 12:01:42 +0100 |
|---|---|---|
| committer | Monty Taylor <mordred@inaugust.com> | 2013-01-11 18:09:25 -0800 |
| commit | 9e5912f59e463e37dbe4505f9e79e9b254e64b87 (patch) | |
| tree | d1b830db059c4852ebce07895f65c0345a8959e2 /openstack/common/iniparser.py | |
| parent | a8973c524c9fe901972ba61f34dafac7438417c9 (diff) | |
Fix pep8 E125 errors.
Caesar's wife must be above reproach.
Change-Id: Iac85a57e71d403360f1567c07c8699057f0772fb
Diffstat (limited to 'openstack/common/iniparser.py')
| -rw-r--r-- | openstack/common/iniparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/iniparser.py b/openstack/common/iniparser.py index 2412844..9bf399f 100644 --- a/openstack/common/iniparser.py +++ b/openstack/common/iniparser.py @@ -54,7 +54,7 @@ class BaseParser(object): value = value.strip() if ((value and value[0] == value[-1]) and - (value[0] == "\"" or value[0] == "'")): + (value[0] == "\"" or value[0] == "'")): value = value[1:-1] return key.strip(), [value] |
