From d7ccd19832d02e75bf7c53c024dea411afca4b3b Mon Sep 17 00:00:00 2001 From: David Sangrey Date: Thu, 2 May 2024 18:33:24 -0400 Subject: [PATCH] [806] Rename Script --- EDMC_System_Profiler.py => EDMCSystemProfiler.py | 2 +- build.py | 2 +- prefs.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename EDMC_System_Profiler.py => EDMCSystemProfiler.py (98%) diff --git a/EDMC_System_Profiler.py b/EDMCSystemProfiler.py similarity index 98% rename from EDMC_System_Profiler.py rename to EDMCSystemProfiler.py index 44dad70d..90a96cee 100644 --- a/EDMC_System_Profiler.py +++ b/EDMCSystemProfiler.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 """ -EDMC_System_Profiler.py - GUI or Command-Line Tool to Print Diagnostic Information about EDMC. +EDMCSystemProfiler.py - GUI or Command-Line Tool to Print Diagnostic Information about EDMC. Copyright (c) EDCD, All Rights Reserved Licensed under the GNU General Public License. diff --git a/build.py b/build.py index 21b9b450..966799c4 100644 --- a/build.py +++ b/build.py @@ -177,7 +177,7 @@ def build() -> None: checker_config: dict = { "dest_base": "EDMCSystemProfiler", - "script": "EDMC_System_Profiler.py", + "script": "EDMCSystemProfiler.py", "icon_resources": [(0, f"{appname}.ico")], "other_resources": [ (24, 1, pathlib.Path(f"resources/{appname}.manifest").read_text(encoding="UTF8")) diff --git a/prefs.py b/prefs.py index ae8d9c23..fc66a537 100644 --- a/prefs.py +++ b/prefs.py @@ -58,7 +58,7 @@ def help_open_system_profiler() -> None: profiler_path /= 'EDMCSystemProfiler.exe' subprocess.run(profiler_path) else: - subprocess.run(['python', "EDMC_System_Profiler.py"], shell=True) + subprocess.run(['python', "EDMCSystemProfiler.py"], shell=True) class PrefsVersion: