Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

Commit

Permalink
split out general status
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Groszer committed Jun 19, 2010
1 parent bf84d52 commit 2403fdb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/zope/wineggbuilder/build.py
Expand Up @@ -257,7 +257,8 @@ def setVersions(self, package, versions):
def setStatus(self, package, version, status, target=None):
if target is None:
# this is a version general status
self.data[package.name][version] = status
for t in self.targets:
self.data[package.name][version][t] = status
else:
self.data[package.name][version][target.name] = status

Expand Down

0 comments on commit 2403fdb

Please sign in to comment.