1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-12 23:37:14 +03:00

[806] Rename Script

This commit is contained in:
David Sangrey 2024-05-02 18:33:24 -04:00
parent ce2e20639c
commit d7ccd19832
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC
3 changed files with 3 additions and 3 deletions

View File

@ -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.

View File

@ -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"))

View File

@ -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: