summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-10-02 16:44:44 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-10-02 21:11:00 +0900
commit03a646e708d3559b3e0f06c0103b76ef8290872e (patch)
treeed2f01065bb75cb4d6e320e980867cfa5082e325
parent3a0db8e0b45426c901b0967ae37f9c15a186ba6e (diff)
downloadbuildstream-03a646e708d3559b3e0f06c0103b76ef8290872e.tar.gz
sandbox.py: Fixup placement of main Sandbox docstring
-rw-r--r--buildstream/sandbox/sandbox.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/buildstream/sandbox/sandbox.py b/buildstream/sandbox/sandbox.py
index ff7dc8762..1df094c39 100644
--- a/buildstream/sandbox/sandbox.py
+++ b/buildstream/sandbox/sandbox.py
@@ -167,6 +167,10 @@ class MountMap():
class Sandbox():
+ """Sandbox()
+
+ Sandbox programming interface for :class:`.Element` plugins.
+ """
# Minimal set of devices for the sandbox
DEVICES = [
@@ -176,10 +180,6 @@ class Sandbox():
'/dev/null'
]
- """Sandbox()
-
- Sandbox programming interface for :class:`.Element` plugins.
- """
def __init__(self, context, project, directory, **kwargs):
self.__context = context
self.__project = project