Bug 835309 - Look at .xpi file contents when unifying them for universal builds. r=gps

This commit is contained in:
Mike Hommey
2013-02-03 07:19:15 +01:00
parent be417d0ed2
commit 0db6eb8e66
7 changed files with 216 additions and 90 deletions

View File

@@ -128,5 +128,10 @@ class ErrorCollector(object):
if count:
raise AccumulatedErrors()
@property
def count(self):
# _count can be None.
return self._count if self._count else 0
errors = ErrorCollector()