]> git.decadent.org.uk Git - dak.git/blobdiff - madison
lots and lots of python 2.1 changes. rene: remove bogus argument handling. katie...
[dak.git] / madison
diff --git a/madison b/madison
index 39a389dc847bfd92e0e0cc23d583c9f7ae5200b7..34532c8ddeb1963d7f6c1f93be3e4d40de1b30a9 100755 (executable)
--- a/madison
+++ b/madison
@@ -2,7 +2,7 @@
 
 # Display information about package(s) (suite, version, etc.)
 # Copyright (C) 2000, 2001, 2002  James Troup <james@nocrew.org>
-# $Id: madison,v 1.20 2002-07-14 15:02:07 troup Exp $
+# $Id: madison,v 1.21 2002-10-16 02:47:32 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
@@ -27,7 +27,7 @@
 
 ################################################################################
 
-import pg, string, sys;
+import pg, sys;
 import utils, db_access;
 import apt_pkg;
 
@@ -119,7 +119,7 @@ def main ():
             ql.extend(q.getresult());
         d = {};
         for i in ql:
-            results = results + 1;
+            results += 1;
             pkg = i[0];
             version = i[1];
             architecture = i[2];
@@ -144,7 +144,7 @@ def main ():
                     sys.stdout.write("%10s | %10s | %13s | " % (pkg, version, suite));
                     arches = d[pkg][version][suite];
                     arches.sort(arch_compare);
-                    sys.stdout.write(string.join(arches, ", "));
+                    sys.stdout.write(", ".join(arches));
                     sys.stdout.write('\n');
 
     if not results: