From 3641acf94ad45c2a7e67d97c8a2a6ef046516781 Mon Sep 17 00:00:00 2001 From: SpagettiFisch Date: Wed, 12 Jun 2024 17:14:44 +0200 Subject: [PATCH] removed a debug line Signed-off-by: SpagettiFisch --- modules/functions.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/functions.py b/modules/functions.py index 5f2000d..6b2ea1d 100644 --- a/modules/functions.py +++ b/modules/functions.py @@ -93,5 +93,4 @@ async def syncWhitelistPterodactyl(whitelist): async def pterodactylWriteFile(serverid, path, data, apikey): url = f'{init.config().get_pterodactyl_domain()}api/client/servers/{serverid}/files/write?file={urllib.parse.quote(path)}' - requests.post(url, data=data, headers={"Accept": "application/json", "Authorization": f"Bearer {apikey}"}) - print('Whitelist abgeschickt') \ No newline at end of file + requests.post(url, data=data, headers={"Accept": "application/json", "Authorization": f"Bearer {apikey}"}) \ No newline at end of file