From d904756049f3c53b562cd2c1f96f7e09dba21949 Mon Sep 17 00:00:00 2001 From: Anthony Towns Date: Wed, 10 Oct 2001 16:04:14 +0000 Subject: [PATCH] Don't change the value of None --- claire.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/claire.py b/claire.py index 131f83ca..2a0e262e 100755 --- a/claire.py +++ b/claire.py @@ -2,7 +2,7 @@ # 'Fix' stable to make debian-cd and dpkg -BORGiE users happy # Copyright (C) 2000, 2001 James Troup -# $Id: claire.py,v 1.8 2001-09-27 01:22:51 troup Exp $ +# $Id: claire.py,v 1.9 2001-10-10 16:04:14 ajt Exp $ # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -65,7 +65,7 @@ def clean_symlink (src, dest, root): def fix_component_section (component, section): if component == "": - (None, component) = utils.extract_component_from_section(section); + component = utils.extract_component_from_section(section)[1]; # FIXME: ugly hacks to work around override brain damage section = re_strip_section_prefix.sub('', section); -- 2.39.2