[Buildbot-commits] [SPAM] Re: [Buildbot] #900: console: exceptions everywhere

Buildbot buildbot-devel at lists.sourceforge.net
Sun Jun 27 03:38:29 UTC 2010


#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 <dustin at zmanda.com>
 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


More information about the Commits mailing list