X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=utils.py;h=c537bf8f34df16b1492319b5dbf517e4136284f9;hb=c473c59ade490e489fd896e66732040630ed52cc;hp=c2424cf768933101f6901289d96d000b90f2802a;hpb=72854d117ff4a60b56f7d1b3efebad03ed22675a;p=dak.git diff --git a/utils.py b/utils.py index c2424cf7..c537bf8f 100644 --- a/utils.py +++ b/utils.py @@ -2,7 +2,7 @@ # Utility functions # Copyright (C) 2000, 2001, 2002, 2003, 2004 James Troup -# $Id: utils.py,v 1.62 2004-01-21 03:48:58 troup Exp $ +# $Id: utils.py,v 1.64 2004-03-11 00:20:51 troup Exp $ ################################################################################ @@ -93,7 +93,7 @@ def extract_component_from_section(section): if section.find('/') != -1: component = section.split('/')[0]; - if component.lower() == "non-us" and section.count('/') > 0: + if component.lower() == "non-us" and section.find('/') != -1: s = component + '/' + section.split('/')[1]; if Cnf.has_key("Component::%s" % s): # Avoid e.g. non-US/libs component = s; @@ -274,7 +274,7 @@ def fix_maintainer (maintainer): rfc822 = maintainer; name = ""; email = ""; - if m != None and len(m.groups()) == 2: + if m and len(m.groups()) == 2: name = m.group(1); email = m.group(2); if name.find(',') != -1 or name.find('.') != -1: