]> git.decadent.org.uk Git - dak.git/commitdiff
Don't change the value of None
authorAnthony Towns <aj@azure.humbug.org.au>
Wed, 10 Oct 2001 16:04:14 +0000 (16:04 +0000)
committerAnthony Towns <aj@azure.humbug.org.au>
Wed, 10 Oct 2001 16:04:14 +0000 (16:04 +0000)
claire.py

index 131f83caae51819688156cb58f24e94b4d24358d..2a0e262ee65dca949e82e3f74a3eeea37dd4380e 100755 (executable)
--- 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 <james@nocrew.org>
-# $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);