summaryrefslogtreecommitdiff
path: root/lib/ansible/executor
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2017-01-27 15:45:23 -0800
committerGitHub <noreply@github.com>2017-01-27 15:45:23 -0800
commit95789f3949b01c79c729315ff375d0e759f64970 (patch)
treef1e2ed9fcc6aaa5e1ed56a20dd1e609e55489cb6 /lib/ansible/executor
parent802fbcadf855db34bfdbcec0c6310c537ff3a5d0 (diff)
downloadansible-95789f3949b01c79c729315ff375d0e759f64970.tar.gz
PEP 8 whitespace cleanup. (#20783)
* PEP 8 E271 whitespace cleanup. * PEP 8 W293 whitespace cleanup. * Fix whitespace issue from recent PR.
Diffstat (limited to 'lib/ansible/executor')
-rw-r--r--lib/ansible/executor/stats.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/executor/stats.py b/lib/ansible/executor/stats.py
index 989a380be7..f91874d17a 100644
--- a/lib/ansible/executor/stats.py
+++ b/lib/ansible/executor/stats.py
@@ -59,7 +59,7 @@ class AggregateStats:
if host is None:
host = '_run'
- if host not in self.custom:
+ if host not in self.custom:
self.custom[host] = {which: what}
else:
self.custom[host][which] = what