diff options
author | Angelos Evripiotis <jevripiotis@bloomberg.net> | 2019-02-27 18:03:31 +0000 |
---|---|---|
committer | Angelos Evripiotis <angelos.evripiotis@gmail.com> | 2019-02-27 18:10:12 +0000 |
commit | 1d3422b0e2b63002da27337f89b5724c5a48806c (patch) | |
tree | eab55319476faa1f077ed4a3e86e8911a6981ca9 /buildstream/_platform | |
parent | 47d5cc0a0601276b2d2db34139d00a48e7d3ff16 (diff) | |
download | buildstream-1d3422b0e2b63002da27337f89b5724c5a48806c.tar.gz |
_platform/darwin: fix missing space, say MacOS
Note that 'OSX' is now called 'MacOS', as of 2016:
https://en.wikipedia.org/wiki/MacOS
Diffstat (limited to 'buildstream/_platform')
-rw-r--r-- | buildstream/_platform/darwin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildstream/_platform/darwin.py b/buildstream/_platform/darwin.py index 292c0cb73..8df8cda24 100644 --- a/buildstream/_platform/darwin.py +++ b/buildstream/_platform/darwin.py @@ -29,8 +29,8 @@ class Darwin(Platform): def create_sandbox(self, *args, **kwargs): kwargs['dummy_reason'] = \ - "OSXFUSE is not supported and there are no supported sandbox" + \ - "technologies for OSX at this time" + "OSXFUSE is not supported and there are no supported sandbox " + \ + "technologies for MacOS at this time" return SandboxDummy(*args, **kwargs) def check_sandbox_config(self, config): |