X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=halle;h=339fd262799d5d794e126c0cfa8c3d82859c7d40;hb=69f4a78e5ed8774bcb8dad17fc8f17d54971bfde;hp=1a16ffe07be36e64d0b6fecd241b88d143bdfdc0;hpb=6213711af5ba0009dd1e5290eeb665f5c51e9fa8;p=dak.git diff --git a/halle b/halle index 1a16ffe0..339fd262 100755 --- a/halle +++ b/halle @@ -1,8 +1,8 @@ #!/usr/bin/env python # Remove obsolete .changes files from proposed-updates -# Copyright (C) 2001 James Troup -# $Id: halle,v 1.5 2002-03-31 16:14:42 troup Exp $ +# Copyright (C) 2001, 2002 James Troup +# $Id: halle,v 1.7 2002-05-18 23:54: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 @@ -49,8 +49,8 @@ Need either changes files or an admin.txt file with a '.joey' suffix.""" def check_changes (filename): try: - changes = utils.parse_changes(filename, 0) - files = utils.build_file_list(changes, ""); + changes = utils.parse_changes(filename); + files = utils.build_file_list(changes); except: utils.warn("Couldn't read changes file '%s'." % (filename)); return; @@ -108,7 +108,7 @@ def check_joey (filename): file = utils.open_file(filename); cwd = os.getcwd(); - os.chdir("%s/dists/proposed-updates" % (Cnf["Dir::RootDir"])); + os.chdir("%s/dists/proposed-updates" % (Cnf["Dir::Root"])); for line in file.readlines(): line = line[:-1];