From 280a1e90d747f6198d3b57935819cc7bdb5ee8f5 Mon Sep 17 00:00:00 2001 From: httpshotmaker <80145620+httpshotmaker@users.noreply.github.com> Date: Sat, 28 May 2022 18:17:20 +0300 Subject: [PATCH] Update UPX Soft Target.py --- UPX Soft Target.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UPX Soft Target.py b/UPX Soft Target.py index 5ba2676..8768307 100644 --- a/UPX Soft Target.py +++ b/UPX Soft Target.py @@ -9,7 +9,7 @@ ctypes.windll.kernel32.SetConsoleTitleW('UPX Soft by httpshotmaker') def clean(): - os.system('clear') + os.system('cls' if os.name == 'nt' else 'clear') clean()