From 039078191f8b1d28dde09b281729186857f2e9bb Mon Sep 17 00:00:00 2001 From: jaydee Date: Tue, 23 Dec 2025 10:56:22 +0100 Subject: [PATCH] build --- portainer.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/portainer.py b/portainer.py index 6fbc100..b732ef3 100755 --- a/portainer.py +++ b/portainer.py @@ -550,7 +550,7 @@ if __name__ == "__main__": ) por.update_service() if args.launcher: - input("Press ENTER to continue...") + input("\nPress ENTER to continue...") sys.exit() if args.action == "update_containers": @@ -595,7 +595,7 @@ if __name__ == "__main__": ) print("\n".join(por.get_containers())) if args.launcher: - input("Press ENTER to continue...") + input("\nPress ENTER to continue...") sys.exit() if args.action == "update_stack": @@ -610,13 +610,13 @@ if __name__ == "__main__": por.update_stack(args) if args.launcher: - input("Press ENTER to continue...") + input("\nPress ENTER to continue...") sys.exit() if args.action == "print_all_data": print(json.dumps(por.all_data, indent=2)) if args.launcher: - input("Press ENTER to continue...") + input("\nPress ENTER to continue...") sys.exit() if args.action == "update_status": @@ -631,7 +631,7 @@ if __name__ == "__main__": headers = ["EndpointId", "Name"] print(tabulate(export_data, headers=headers, tablefmt="github")) if args.launcher: - input("Press ENTER to continue...") + input("\nPress ENTER to continue...") sys.exit() if args.action == "stop_containers":