donate-cpu-server.py: Fix PEP8 issues (#2280)
This commit is contained in:
parent
cde08fb950
commit
c8e1ca7127
|
@ -18,7 +18,7 @@ import operator
|
||||||
# Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/
|
# Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/
|
||||||
# Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic
|
# Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic
|
||||||
# changes)
|
# changes)
|
||||||
SERVER_VERSION = "1.1.7"
|
SERVER_VERSION = "1.1.8"
|
||||||
|
|
||||||
OLD_VERSION = '1.89'
|
OLD_VERSION = '1.89'
|
||||||
|
|
||||||
|
@ -58,6 +58,7 @@ def strDateTime():
|
||||||
def dateTimeFromStr(datestr):
|
def dateTimeFromStr(datestr):
|
||||||
return datetime.datetime.strptime(datestr, '%Y-%m-%d %H:%M')
|
return datetime.datetime.strptime(datestr, '%Y-%m-%d %H:%M')
|
||||||
|
|
||||||
|
|
||||||
def overviewReport():
|
def overviewReport():
|
||||||
html = '<html><head><title>daca@home</title></head><body>\n'
|
html = '<html><head><title>daca@home</title></head><body>\n'
|
||||||
html += '<h1>daca@home</h1>\n'
|
html += '<h1>daca@home</h1>\n'
|
||||||
|
@ -88,11 +89,11 @@ def fmt(a, b, c=None, d=None, e=None, link=True):
|
||||||
ret += ' '
|
ret += ' '
|
||||||
if len(b) > 10:
|
if len(b) > 10:
|
||||||
ret += b[-5:].rjust(column_width[2]) + ' '
|
ret += b[-5:].rjust(column_width[2]) + ' '
|
||||||
if not c is None:
|
if c is not None:
|
||||||
ret += c.rjust(column_width[3]) + ' '
|
ret += c.rjust(column_width[3]) + ' '
|
||||||
if not d is None:
|
if d is not None:
|
||||||
ret += d.rjust(column_width[4]) + ' '
|
ret += d.rjust(column_width[4]) + ' '
|
||||||
if not e is None:
|
if e is not None:
|
||||||
ret += e.rjust(column_width[5])
|
ret += e.rjust(column_width[5])
|
||||||
if link:
|
if link:
|
||||||
pos = ret.find(' ')
|
pos = ret.find(' ')
|
||||||
|
@ -150,8 +151,8 @@ def crashReport(results_path):
|
||||||
if not os.path.isfile(filename):
|
if not os.path.isfile(filename):
|
||||||
continue
|
continue
|
||||||
datestr = ''
|
datestr = ''
|
||||||
with open(filename, 'rt') as file:
|
with open(filename, 'rt') as file_:
|
||||||
for line in file:
|
for line in file_:
|
||||||
line = line.strip()
|
line = line.strip()
|
||||||
if line.startswith('cppcheck: '):
|
if line.startswith('cppcheck: '):
|
||||||
if OLD_VERSION not in line:
|
if OLD_VERSION not in line:
|
||||||
|
@ -177,13 +178,13 @@ def crashReport(results_path):
|
||||||
if c1 != 'Crash':
|
if c1 != 'Crash':
|
||||||
break
|
break
|
||||||
if line.find(' received signal ') != -1:
|
if line.find(' received signal ') != -1:
|
||||||
crash_line = next(file, '').strip()
|
crash_line = next(file_, '').strip()
|
||||||
location_index = crash_line.rindex(' at ')
|
location_index = crash_line.rindex(' at ')
|
||||||
if location_index > 0:
|
if location_index > 0:
|
||||||
code_line = next(file, '').strip();
|
code_line = next(file_, '').strip()
|
||||||
stack_trace = []
|
stack_trace = []
|
||||||
while True:
|
while True:
|
||||||
l = next(file, '')
|
l = next(file_, '')
|
||||||
m = re.search(r'(?P<number>#\d+) .* (?P<function>.+)\(.*\) at (?P<location>.*)$', l)
|
m = re.search(r'(?P<number>#\d+) .* (?P<function>.+)\(.*\) at (?P<location>.*)$', l)
|
||||||
if not m:
|
if not m:
|
||||||
break
|
break
|
||||||
|
@ -362,7 +363,7 @@ def diffMessageIdReport(resultPath, messageId):
|
||||||
continue
|
continue
|
||||||
with open(filename, 'rt') as f:
|
with open(filename, 'rt') as f:
|
||||||
diff_stats = f.read()
|
diff_stats = f.read()
|
||||||
if not messageId in diff_stats:
|
if messageId not in diff_stats:
|
||||||
continue
|
continue
|
||||||
url = None
|
url = None
|
||||||
diff = False
|
diff = False
|
||||||
|
@ -390,9 +391,9 @@ def diffMessageIdTodayReport(resultPath, messageId):
|
||||||
continue
|
continue
|
||||||
with open(filename, 'rt') as f:
|
with open(filename, 'rt') as f:
|
||||||
diff_stats = f.read()
|
diff_stats = f.read()
|
||||||
if not messageId in diff_stats:
|
if messageId not in diff_stats:
|
||||||
continue
|
continue
|
||||||
if not today in diff_stats:
|
if today not in diff_stats:
|
||||||
continue
|
continue
|
||||||
url = None
|
url = None
|
||||||
diff = False
|
diff = False
|
||||||
|
|
Loading…
Reference in New Issue