Skip to content

Commit

Permalink
Merge pull request #238 from tommydeboer/fix/debugger
Browse files Browse the repository at this point in the history
fix: rename io stragglers
  • Loading branch information
tommydeboer authored Jun 21, 2022
2 parents b352e10 + fd25c10 commit 9719ca9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mcmd/commands/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
2 changes: 1 addition & 1 deletion mcmd/commands/delete.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))


Expand Down

0 comments on commit 9719ca9

Please sign in to comment.