diff --git a/mc_control.py b/mc_control.py index 3605e12..b858c6e 100644 --- a/mc_control.py +++ b/mc_control.py @@ -85,7 +85,7 @@ def send_commands(): with Client(servers[server]['address'], int(servers[server]['port']), passwd=servers[server]['password']) as client: response = client.run(command) - print(servers[server]['name']+': '+response) + print(servers[server]['name']+': '+response+'\n') else: proceed = False print('No command was entered. Exiting.\n') @@ -98,7 +98,7 @@ def send_commands(): with Client(x['address'], int(x['port']), passwd=x['password']) as client: response = client.run(command) - print(x['name']+': '+response) + print(x['name']+': '+response+'\n') else: proceed = False print('No command was entered. Exiting.\n')