diff options
author | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2008-03-16 10:38:54 +0000 |
---|---|---|
committer | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2008-03-16 10:38:54 +0000 |
commit | 4bc98b67904cb6c401ff22e42f3009c5d8e1c0f2 (patch) | |
tree | ec46fe24994b30853f80d86f0ec115293cd4fdd7 /classes/seppuku.bbclass | |
parent | 5263c836a2381d4dee6a64f2da05e7b6231e6e77 (diff) |
seppuku: add PN to comment line for attachment (as discussed on ml)
Diffstat (limited to 'classes/seppuku.bbclass')
-rw-r--r-- | classes/seppuku.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/seppuku.bbclass b/classes/seppuku.bbclass index c6cde6e4d4..e158339ad8 100644 --- a/classes/seppuku.bbclass +++ b/classes/seppuku.bbclass @@ -334,7 +334,7 @@ python seppuku_eventhandler() { "pv" : bb.data.getVar("PV", data, True), } log_file = glob.glob("%s/log.%s.*" % (bb.data.getVar('T', event.data, True), event.task)) - text = "The %s step failed at %s for machine %s" % (e.task, bb.data.getVar('DATETIME', data, True), bb.data.getVar( 'MACHINE', data, True ) ) + text = "The %s step in %s failed at %s for machine %s" % (e.task, bb.data.getVar("PN", data, True), bb.data.getVar('DATETIME', data, True), bb.data.getVar( 'MACHINE', data, True ) ) if len(log_file) != 0: print >> debug_file, "Adding log file %s" % log_file[0] file = open(log_file[0], 'r') |