Changeset 647 in tmcsimulator for trunk/src/python


Ignore:
Timestamp:
09/02/2022 04:10:35 PM (4 years ago)
Author:
jdalbey
Message:

activitylog_watcher.py Fix minor defect in error message.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/python/unifiedlogger/activitylog_watcher.py

    r645 r647  
    6363        log_file = open (getLogFilePath() + logfilename,'r') 
    6464    except IOError: 
    65         print "Error: missing "+logfilepath + logfilename + " file." 
     65        print "Error: missing "+getLogFilePath() + logfilename + " file." 
    6666    else: 
    6767        logData=log_file.read()  # Read the activity log 
     
    8080        data_summary = open(getLogFilePath() + data_summary, 'r') 
    8181    except IOError: 
    82         print "Error: missing "+logfilepath + data_summary + " file." 
     82        print "Error: missing "+getLogFilePath() + data_summary + " file." 
    8383    else: 
    8484        # read in incident_description json file that contains Incident summary data 
Note: See TracChangeset for help on using the changeset viewer.