summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Kincl <kincljc@ornl.gov>2013-08-30 14:57:32 -0400
committerJason Kincl <kincljc@ornl.gov>2013-08-30 14:57:32 -0400
commit730179b581e0dcdaa93a4819acbeb207db6980ef (patch)
treec69431aefbef5cf45f8c3e8ac2d25d3888d5b53d /src
parent05542e5ff0366fb2a7bdf9530cf716c530253fa1 (diff)
downloadbcfg2-730179b581e0dcdaa93a4819acbeb207db6980ef.tar.gz
bcfg2-730179b581e0dcdaa93a4819acbeb207db6980ef.tar.bz2
bcfg2-730179b581e0dcdaa93a4819acbeb207db6980ef.zip
Fix pep8 errors
Diffstat (limited to 'src')
-rw-r--r--src/lib/Bcfg2/Client/Frame.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/Bcfg2/Client/Frame.py b/src/lib/Bcfg2/Client/Frame.py
index 2eb41e837..ad718749e 100644
--- a/src/lib/Bcfg2/Client/Frame.py
+++ b/src/lib/Bcfg2/Client/Frame.py
@@ -329,12 +329,12 @@ class Frame(object):
if bundle.tag != 'Bundle':
continue
bmodified = len([item for item in bundle
- if item in self.whitelist or
- item in self.modified])
+ if item in self.whitelist or
+ item in self.modified])
actions = [a for a in bundle.findall('./Action')
if (a.get('timing') != 'post' and
(bmodified or a.get('when') == 'always'))]
- # now we process all "pre" and "both" actions that are either
+ # now we process all "pre" and "both" actions that are either
# always or the bundle has been modified
if self.setup['interactive']:
self.promptFilter(iprompt, actions)