From d591c299c8e84dbdc0b2608c8a6bc0531cf53a70 Mon Sep 17 00:00:00 2001 From: Pascal Bouquet Date: Wed, 3 Dec 2025 15:08:14 +0100 Subject: [PATCH] fix: Resolve encoding issue in CLI menu --- inwx_cli.py | 3 +++ inwx_config.py | 3 +++ inwx_dns_functions.py | 3 +++ 3 files changed, 9 insertions(+) diff --git a/inwx_cli.py b/inwx_cli.py index 99b7cf2..a5c44fe 100644 --- a/inwx_cli.py +++ b/inwx_cli.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + import os from inwx_config import login, logout # Importiere Login/Logout aus der Konfigurationsdatei from inwx_dns_functions import get_dns_info, add_record, update_record, delete_record # Importiere DNS-Funktionen diff --git a/inwx_config.py b/inwx_config.py index ca2f06a..80f65a4 100644 --- a/inwx_config.py +++ b/inwx_config.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + import requests import json diff --git a/inwx_dns_functions.py b/inwx_dns_functions.py index a3d5071..7cd83ac 100644 --- a/inwx_dns_functions.py +++ b/inwx_dns_functions.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + from inwx_config import api_call # Importiere die Basis-API-Funktion def get_dns_info(domain):