X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=katie.py;h=f501015260b7911af6991b82a3db1d341451cda6;hb=ef19817cba751f40fab9e62502188fda68245feb;hp=a55fe4374f7c7a13f183493c294a068230f908fc;hpb=d1bddedc641c0858a64a759ed91748fa2d7e8876;p=dak.git diff --git a/katie.py b/katie.py index a55fe437..f5010152 100644 --- a/katie.py +++ b/katie.py @@ -2,7 +2,7 @@ # Utility functions for katie # Copyright (C) 2001, 2002, 2003 James Troup -# $Id: katie.py,v 1.42 2003-10-29 16:57:44 troup Exp $ +# $Id: katie.py,v 1.43 2003-11-07 01:48:42 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 @@ -469,7 +469,9 @@ distribution."""; return; summary = ""; - for file in files.keys(): + file_keys = files.keys(); + file_keys.sort(); + for file in file_keys: if not files[file].has_key("new") and files[file]["type"] == "deb": section = files[file]["section"]; override_section = files[file]["override section"];