summaryrefslogtreecommitdiff
path: root/buildstream/_platform/unix.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildstream/_platform/unix.py')
-rw-r--r--buildstream/_platform/unix.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_platform/unix.py b/buildstream/_platform/unix.py
index 7aa8cbc0d..d2acefe65 100644
--- a/buildstream/_platform/unix.py
+++ b/buildstream/_platform/unix.py
@@ -20,7 +20,6 @@
import os
from .._exceptions import PlatformError
-from ..sandbox import SandboxChroot
from . import Platform
@@ -39,6 +38,7 @@ class Unix(Platform):
raise PlatformError("Root privileges are required to run without bubblewrap.")
def create_sandbox(self, *args, **kwargs):
+ from ..sandbox._sandboxchroot import SandboxChroot
return SandboxChroot(*args, **kwargs)
def check_sandbox_config(self, config):