Skip to content

Commit

Permalink
Merge branch 'mitre:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
b34c0n5 committed Apr 29, 2024
2 parents 8b048f2 + 4d3eae2 commit 02870a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/service/app_svc.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ async def load(p):
await self.get_service('data_svc').store(plugin)
self._loaded_plugins.append(plugin)

if plugin.name in self.get_config('plugins'):
if plugin.name in self.get_config('plugins') or plugin.name == 'magma':
await plugin.enable(self.get_services())
self.log.info('Enabled plugin: %s' % plugin.name)

Expand Down
2 changes: 1 addition & 1 deletion plugins/human
2 changes: 1 addition & 1 deletion server.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def run_tasks(services, run_vue_server=False):
loop.run_until_complete(start_vue_dev_server())
try:
logging.info("All systems ready.")
logging.info(print_rich_banner())
print_rich_banner()
loop.run_forever()
except KeyboardInterrupt:
loop.run_until_complete(
Expand Down

0 comments on commit 02870a0

Please sign in to comment.