From e51cbd2fa134d7156e81a99598595fbfc6c839c3 Mon Sep 17 00:00:00 2001 From: tassaron Date: Thu, 15 Jan 2026 10:36:53 -0500 Subject: rename 'test report' to 'log file' in comments/errors --- src/avp/command.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/avp') diff --git a/src/avp/command.py b/src/avp/command.py index 61612ef..7a77848 100644 --- a/src/avp/command.py +++ b/src/avp/command.py @@ -265,7 +265,7 @@ class Command(QtCore.QObject): logNumber = 0 def getFilename(): - """Get a numbered filename for the final test report""" + """Get a numbered filename for the final log file""" nonlocal logNumber name = os.path.join(os.path.expanduser("~"), "avp_log") while True: @@ -276,10 +276,10 @@ class Command(QtCore.QObject): break return possibleName - # Copy latest debug log to chosen test report location + # Copy latest debug log to chosen log file location filename = getFilename() if logNumber == 100: - print("Test Report could not be created.") + print("Log file could not be created (too many exist).") return try: shutil.copy(os.path.join(core.Core.logDir, "avp_debug.log"), filename) -- cgit v1.2.3