From bc69ff62237f9827bddf21f479ce73b2ec2af7d8 Mon Sep 17 00:00:00 2001 From: jaydee Date: Tue, 23 Dec 2025 22:06:24 +0100 Subject: [PATCH] build --- portainer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/portainer.py b/portainer.py index abd35ae..165cb13 100755 --- a/portainer.py +++ b/portainer.py @@ -13,7 +13,7 @@ import json import argparse import hvac from tabulate import tabulate -from port import PortainerApi +import port from prompt_toolkit import prompt from prompt_toolkit.completion import WordCompleter from prompt_toolkit.shortcuts import checkboxlist_dialog @@ -425,7 +425,7 @@ if __name__ == "__main__": os.system("cls" if os.name == "nt" else "clear") # Example: list endpoints - por = PortainerApi(cur_config["PORTAINER_SITE"], args) + por = port.PortainerApi(cur_config["PORTAINER_SITE"], args) por.set_defaults(cur_config) if args.debug: por._debug = True