Author: tille Date: Mon Jun 21 08:30:12 2010 New Revision: 2221 URL: http://svn.debian.org/viewsvn/blends?rev=2221&view=rev
Log: Make sure packages from main/installer will be handled correctly Modified: blends/trunk/webtools/blendstasktools.py Modified: blends/trunk/webtools/blendstasktools.py URL: http://svn.debian.org/viewsvn/blends/blends/trunk/webtools/blendstasktools.py?rev=2221&view=diff&r1=2221&r2=2220&p1=blends/trunk/webtools/blendstasktools.py&p2=blends/trunk/webtools/blendstasktools.py ============================================================================== --- blends/trunk/webtools/blendstasktools.py (original) +++ blends/trunk/webtools/blendstasktools.py Mon Jun 21 08:30:12 2010 @@ -598,6 +598,9 @@ self.component = 'non-free' else: self.component = curs.fetchone()[0] + # Debian Edu contains packages from main/debian-installer + if self.component == 'main/debian-installer': + self.component = 'main' self.properties['license'] = license_in_component[self.component] query = "EXECUTE pkg_releases ('%s', '%s')" % (self.pkg, self.component) _______________________________________________ Blends-commit mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/blends-commit
