]> git.decadent.org.uk Git - dak.git/blobdiff - julia
lots and lots of python 2.1 changes. rene: remove bogus argument handling. katie...
[dak.git] / julia
diff --git a/julia b/julia
index e7dff3bc40dcdc24aadf857f4e3e0754ee21122e..e3548784d608f7f5f4602200b156099d751a024d 100755 (executable)
--- a/julia
+++ b/julia
@@ -2,7 +2,7 @@
 
 # Sync PostgreSQL users with system users
 # Copyright (C) 2001, 2002  James Troup <james@nocrew.org>
-# $Id: julia,v 1.7 2002-08-14 00:40:19 troup Exp $
+# $Id: julia,v 1.8 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
@@ -30,7 +30,7 @@
 
 ################################################################################
 
-import pg, pwd, string, sys;
+import pg, pwd, sys;
 import utils;
 import apt_pkg;
 
@@ -95,8 +95,8 @@ def main ():
         postgres_unames[uname] = "";
 
     known_postgres_unames = {};
-    for i in string.split(Cnf.get("Julia::KnownPostgres",""),","):
-        uname = string.strip(i);
+    for i in Cnf.get("Julia::KnownPostgres","").split(","):
+        uname = i.strip();
         known_postgres_unames[uname] = "";
 
     keys = postgres_unames.keys()