summaryrefslogtreecommitdiffstats
path: root/openstack/common/rootwrap
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2013-01-11 12:01:42 +0100
committerMonty Taylor <mordred@inaugust.com>2013-01-11 18:09:25 -0800
commit9e5912f59e463e37dbe4505f9e79e9b254e64b87 (patch)
treed1b830db059c4852ebce07895f65c0345a8959e2 /openstack/common/rootwrap
parenta8973c524c9fe901972ba61f34dafac7438417c9 (diff)
downloadoslo-9e5912f59e463e37dbe4505f9e79e9b254e64b87.tar.gz
oslo-9e5912f59e463e37dbe4505f9e79e9b254e64b87.tar.xz
oslo-9e5912f59e463e37dbe4505f9e79e9b254e64b87.zip
Fix pep8 E125 errors.
Caesar's wife must be above reproach. Change-Id: Iac85a57e71d403360f1567c07c8699057f0772fb
Diffstat (limited to 'openstack/common/rootwrap')
-rw-r--r--openstack/common/rootwrap/filters.py6
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