diff --git a/mcmd/commands/config.py b/mcmd/commands/config.py index ed5e887..a4b0cbb 100644 --- a/mcmd/commands/config.py +++ b/mcmd/commands/config.py @@ -211,6 +211,6 @@ def config_add_resource_folder(args): def _switch_to_new_host(url): - io.start("Switching to host {}".format(highlight(url))) + in_out.start("Switching to host {}".format(highlight(url))) config.set_host(url) - io.succeed() + in_out.succeed() diff --git a/mcmd/commands/delete.py b/mcmd/commands/delete.py index aa243bc..737e088 100644 --- a/mcmd/commands/delete.py +++ b/mcmd/commands/delete.py @@ -145,7 +145,7 @@ def _delete_packages_in_package(package_id): def _delete_group(args): if args.force or (not args.force and mcmd.in_out.ask.confirm( 'Are you sure you want to delete group {}?'.format(args.resource))): - io.start('Deleting group {}'.format(highlight(args.resource))) + in_out.start('Deleting group {}'.format(highlight(args.resource))) client.delete(urljoin(api.group(), args.resource))