Mercurial > libervia-backend
comparison sat/plugins/plugin_app_manager_docker/__init__.py @ 3382:3b08caa805e7
plugin app manager docker: typo
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 20 Oct 2020 09:12:38 +0200 |
parents | f44402f8a81f |
children | be6d91572633 |
comparison
equal
deleted
inserted
replaced
3381:127dde80a0a5 | 3382:3b08caa805e7 |
---|---|
48 log.info(_("Docker App Manager initialization")) | 48 log.info(_("Docker App Manager initialization")) |
49 try: | 49 try: |
50 self.docker_compose_path = which('docker-compose')[0] | 50 self.docker_compose_path = which('docker-compose')[0] |
51 except IndexError: | 51 except IndexError: |
52 raise exceptions.NotFound( | 52 raise exceptions.NotFound( |
53 '"docker-compose" executable not found, Docker can\'t used with ' | 53 '"docker-compose" executable not found, Docker can\'t be used with ' |
54 'application manager') | 54 'application manager') |
55 self.host = host | 55 self.host = host |
56 self._am = host.plugins['APP_MANAGER'] | 56 self._am = host.plugins['APP_MANAGER'] |
57 self._am.register(self) | 57 self._am.register(self) |
58 | 58 |