Don't reference 'text' before assignment
This commit is contained in:
parent
3ab2cad47e
commit
f0b375638e
1 changed files with 1 additions and 1 deletions
|
@ -310,7 +310,7 @@ subsequent commits are made after X, by different people."""
|
||||||
if branch != 'master':
|
if branch != 'master':
|
||||||
sbj += ' [%s]' % branch
|
sbj += ' [%s]' % branch
|
||||||
|
|
||||||
text += "Unfortunately it seems that there is a breakage on GDB.\n\n"
|
text = "Unfortunately it seems that there is a breakage on GDB.\n\n"
|
||||||
text += "Commit title: '%s'\n" % title
|
text += "Commit title: '%s'\n" % title
|
||||||
text += "Revision: %s\n\n" %rev
|
text += "Revision: %s\n\n" %rev
|
||||||
text += "You can find more details below:\n\n"
|
text += "You can find more details below:\n\n"
|
||||||
|
|
Loading…
Reference in a new issue