#900: console: exceptions everywhere
-------------------+--------------------------------------------------------
Reporter:  axel    |        Owner:        
    Type:  defect  |       Status:  closed
Priority:  major   |    Milestone:  0.8.1 
 Version:  0.8.0   |   Resolution:  fixed 
Keywords:  web     |  
-------------------+--------------------------------------------------------
Changes (by dustin):

  * status:  new => closed
  * resolution:  => fixed


Comment:

 Wow, this was hard enough to track down the first time - I just blew
 another hour tracing it down again :(

 The tuple problem is fixed here:

 commit df1ed8e625504d3bd7878b732680eb287ddd52aa
 Author: Dustin J. Mitchell <[email protected]>
 Date:   Sun Jun 13 21:32:25 2010 -0500

     remove stray comma

 {{{
 #!patch
 diff --git a/master/buildbot/status/web/console.py
 b/master/buildbot/status/web/console.py
 index b69cb6a..049640d 100644
 --- a/master/buildbot/status/web/console.py
 +++ b/master/buildbot/status/web/console.py
 @@ -59,7 +59,7 @@ class DevBuild:

      def __init__(self, revision, build, details):
          self.revision = revision
 -        self.results =  build.getResults(),
 +        self.results =  build.getResults()
          self.number = build.getNumber()
          self.isFinished = build.isFinished()
          self.text = build.getText()
 }}}

-- 
Ticket URL: <http://buildbot.net/trac/ticket/900#comment:3>
Buildbot <http://buildbot.net/>
Buildbot: build/test automation
------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
_______________________________________________
Buildbot-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/buildbot-commits

Reply via email to