Skip to content

Commit

Permalink
make the temporary SourceStamp more obvious
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Jan 5, 2013
1 parent cb1b5a9 commit 04843b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions master/buildbot/process/buildrequest.py
Expand Up @@ -22,7 +22,7 @@
from buildbot.status.results import FAILURE
from buildbot.db import buildrequests

class SourceStamp(object):
class TempSourceStamp(object):
# temporary fake sourcestamp; attributes are added below
pass

Expand Down Expand Up @@ -107,7 +107,7 @@ def _make_br(cls, brid, brdict, master):
assert bsdata['sourcestamps'], "buildset must have at least one sourcestamp"
buildrequest.sources = {}
for ssdata in bsdata['sourcestamps']:
ss = buildrequest.sources[ssdata['codebase']] = SourceStamp()
ss = buildrequest.sources[ssdata['codebase']] = TempSourceStamp()
ss.ssid = ssdata['ssid']
ss.branch = ssdata['branch']
ss.revision = ssdata['revision']
Expand Down

0 comments on commit 04843b2

Please sign in to comment.