Skip to content

Commit

Permalink
fix(network): corrects the message on successful deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
pallabpain committed Aug 7, 2023
1 parent 140e65f commit 0b3acd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion riocli/network/delete.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def delete_network(
raise Exception('invalid network type')

spinner.text = click.style(
'{} deleted successfully!'.format(network_type.capitalize()),
'{} network deleted successfully!'.format(network_type.capitalize()),
fg=Colors.GREEN)
spinner.green.ok(Symbols.SUCCESS)
except Exception as e:
Expand Down

0 comments on commit 0b3acd2

Please sign in to comment.