Commit cb8408e7 authored by Robert Schmidt's avatar Robert Schmidt

AnalyzeLogFile_eNB: eNBlogFile will implicitly be in current directory

parent 375776d8
......@@ -775,9 +775,9 @@ class RANManagement():
return stats
def AnalyzeLogFile_eNB(self, eNBlogFile, HTML, checkers={}):
if (not os.path.isfile('./' + eNBlogFile)):
if (not os.path.isfile(eNBlogFile)):
return -1
enb_log_file = open('./' + eNBlogFile, 'r')
enb_log_file = open(eNBlogFile, 'r')
exitSignalReceived = False
foundAssertion = False
msgAssertion = ''
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment