X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=halle;h=655c83de37b7af5fa9d714ad10f6242b456ba5ec;hb=f544f13b91fa2ebc2a5c91eb81098d93af639bfe;hp=079864a836b7376e4cec18629c9a10a35e4ccb8c;hpb=9d436d3854aeff0fb1d6e8c5fcdcefd47af87a9b;p=dak.git diff --git a/halle b/halle index 079864a8..655c83de 100755 --- a/halle +++ b/halle @@ -1,8 +1,8 @@ #!/usr/bin/env python # Remove obsolete .changes files from proposed-updates -# Copyright (C) 2001, 2002, 2003 James Troup -# $Id: halle,v 1.10 2003-11-20 02:37:37 troup Exp $ +# Copyright (C) 2001, 2002, 2003, 2004 James Troup +# $Id: halle,v 1.12 2004-03-11 00:20:51 troup 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 @@ -56,7 +56,7 @@ def check_changes (filename): return; num_files = len(files.keys()); for file in files.keys(): - if utils.re_isadeb.match(file) != None: + if utils.re_isadeb.match(file): m = re_isdeb.match(file); pkg = m.group(1); version = m.group(2); @@ -65,7 +65,7 @@ def check_changes (filename): print "BINARY: %s ==> %s_%s_%s" % (file, pkg, version, arch); else: m = utils.re_issource.match(file) - if m != None: + if m: pkg = m.group(1); version = m.group(2); type = m.group(3); @@ -121,7 +121,7 @@ def check_joey (filename): if len(split_line) != 2: utils.fubar("Parse error (not exactly 2 elements): %s" % (line)); install_type = split_line[0]; - if [ "install", "install-u", "sync-install" ].count(install_type) == 0: + if install_type not in [ "install", "install-u", "sync-install" ]: utils.fubar("Unknown install type ('%s') from: %s" % (install_type, line)); changes_filename = split_line[1] if Options["debug"]: