Comment 4 for bug 227197

Revision history for this message
Michael Vogt (mvo) wrote :

The proposed fix:

=== modified file 'DistUpgrade/DistUpgradeCache.py'
--- DistUpgrade/DistUpgradeCache.py 2008-04-29 13:56:43 +0000
+++ DistUpgrade/DistUpgradeCache.py 2008-05-06 12:13:25 +0000
@@ -284,7 +284,8 @@

         # only enforce section if we have a network. Otherwise we run
         # into CD upgrade issues for installed language packs etc
- if bool(self.config.get("Options","withNetwork")):
+ network = self.config.get("Options","withNetwork")
+ if network == "True":
             logging.debug("Running KeepInstalledSection rules")
             # now the keepInstalledSection code
             for section in self.config.getlist("Distro","KeepInstalledSection"):

=== modified file 'debian/changelog'
--- debian/changelog 2008-04-30 20:42:54 +0000
+++ debian/changelog 2008-05-06 12:13:58 +0000
@@ -1,3 +1,10 @@
+update-manager (1:0.87.27) hardy-proposed; urgency=low
+
+ * DistUpgrade/DistUpgradeCache.py:
+ - fix bug in withNetwork value propergation (LP: #227197)
+
+ -- Michael Vogt <email address hidden> Tue, 06 May 2008 14:13:58 +0200
+