summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2015-02-17 09:26:07 -0600
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2015-02-17 09:26:07 -0600
commitfc4b418283fb815a5b79e320751e781d8c4bd500 (patch)
tree410143e8062b631426826ca0fa98edd8985c5823
parent6491d368d40f3de7d6c49b69b782497151d050a5 (diff)
downloadbcfg2-fc4b418283fb815a5b79e320751e781d8c4bd500.tar.gz
bcfg2-fc4b418283fb815a5b79e320751e781d8c4bd500.tar.bz2
bcfg2-fc4b418283fb815a5b79e320751e781d8c4bd500.zip
one more pylint fix
-rw-r--r--src/lib/Bcfg2/Client/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Client/__init__.py b/src/lib/Bcfg2/Client/__init__.py
index 1240ad74a..674162572 100644
--- a/src/lib/Bcfg2/Client/__init__.py
+++ b/src/lib/Bcfg2/Client/__init__.py
@@ -838,8 +838,8 @@ class Client(object):
mods = self.modified
new_mbundles = [struct for struct in all_bundles
- if any(True for mod in mods if mod in struct)
- and struct not in mbundles + add_mbundles]
+ if any(True for mod in mods if mod in struct) and
+ struct not in mbundles + add_mbundles]
add_mbundles.extend(new_mbundles)
return add_mbundles