diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-01-12 10:11:08 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-01-12 10:11:08 +0000 |
| commit | bde8391028d1f60373c4edde61b5ee71f952828b (patch) | |
| tree | 18976ac6f69fe861297bc589a7d316414ae464a9 /openstack/common/rootwrap | |
| parent | d371e80815957a670377e9d348796714a1ae037c (diff) | |
| parent | 9e5912f59e463e37dbe4505f9e79e9b254e64b87 (diff) | |
| download | oslo-bde8391028d1f60373c4edde61b5ee71f952828b.tar.gz oslo-bde8391028d1f60373c4edde61b5ee71f952828b.tar.xz oslo-bde8391028d1f60373c4edde61b5ee71f952828b.zip | |
Merge "Fix pep8 E125 errors."
Diffstat (limited to 'openstack/common/rootwrap')
| -rw-r--r-- | openstack/common/rootwrap/filters.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openstack/common/rootwrap/filters.py b/openstack/common/rootwrap/filters.py index 632e8d5..905bbab 100644 --- a/openstack/common/rootwrap/filters.py +++ b/openstack/common/rootwrap/filters.py @@ -95,9 +95,9 @@ class DnsmasqFilter(CommandFilter): def match(self, userargs): if (userargs[0] == 'env' and - userargs[1].startswith(self.CONFIG_FILE_ARG) and - userargs[2].startswith('NETWORK_ID=') and - userargs[3] == 'dnsmasq'): + userargs[1].startswith(self.CONFIG_FILE_ARG) and + userargs[2].startswith('NETWORK_ID=') and + userargs[3] == 'dnsmasq'): return True return False |
