summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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