Fix typo
This commit is contained in:
parent
133243beb9
commit
2ee4bd06cd
1 changed files with 2 additions and 2 deletions
|
@ -413,7 +413,7 @@ send to the gdb-testers mailing list."""
|
||||||
git_url = "http://gdb-build.sergiodj.net/cgit"
|
git_url = "http://gdb-build.sergiodj.net/cgit"
|
||||||
branch = build.getSourceStamps ()[0].branch
|
branch = build.getSourceStamps ()[0].branch
|
||||||
sourcestamp = build.getSourceStamps ()[0]
|
sourcestamp = build.getSourceStamps ()[0]
|
||||||
cur_change = sourcestamp.patch
|
cur_change = sourcestamp.patch[0]
|
||||||
properties = build.getProperties ()
|
properties = build.getProperties ()
|
||||||
isrebuild = properties.getProperty ('isRebuild')
|
isrebuild = properties.getProperty ('isRebuild')
|
||||||
|
|
||||||
|
@ -459,7 +459,7 @@ send to the gdb-testers mailing list."""
|
||||||
for log in build.getLogs ():
|
for log in build.getLogs ():
|
||||||
st = log.getStep ()
|
st = log.getStep ()
|
||||||
n = st.getName ()
|
n = st.getName ()
|
||||||
if st.getResults ()[0] == SUCCESS or st.getResults ()[0] == WARNING:
|
if st.getResults ()[0] == SUCCESS or st.getResults ()[0] == WARNINGS:
|
||||||
if n == 'regressions':
|
if n == 'regressions':
|
||||||
text += "Congratulations! No regressions were found in this build!\n\n"
|
text += "Congratulations! No regressions were found in this build!\n\n"
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in a new issue