summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-19 15:38:09 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-19 15:38:09 +0900
commit0a718d863ecc0d51f1a1479689f14fbecd178fca (patch)
tree030e5f7ac2deda3c8d02051b7d199200f8858c7f
parent849d66e0f0b093d6531cc352ef6edbefe42fbc9f (diff)
downloadbuildstream-0a718d863ecc0d51f1a1479689f14fbecd178fca.tar.gz
buildstream/sandbox/_mount.py: Fixing unused variables
-rw-r--r--buildstream/sandbox/_mount.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/sandbox/_mount.py b/buildstream/sandbox/_mount.py
index 062082f3b..84ab30ada 100644
--- a/buildstream/sandbox/_mount.py
+++ b/buildstream/sandbox/_mount.py
@@ -138,6 +138,6 @@ class MountMap():
@contextmanager
def mounted(self, sandbox):
with ExitStack() as stack:
- for mountpoint, mount in self.mounts.items():
+ for _, mount in self.mounts.items():
stack.enter_context(mount.mounted(sandbox))
yield