* Remove use of deprecated functions from the string module
[mirror/userdir-ldap.git] / ud-arbimport
index ab3af80..5d5a37d 100755 (executable)
@@ -22,7 +22,7 @@
 # the form of:
 #  uid: <data>
 
 # the form of:
 #  uid: <data>
 
-import string, re, time, ldap, getopt, sys;
+import re, time, ldap, getopt, sys;
 from userdir_ldap import *;
 
 # Process options
 from userdir_ldap import *;
 
 # Process options
@@ -52,7 +52,7 @@ while(1):
       if User == None:
          User = Split[0];
       if Split[0] == User:
       if User == None:
          User = Split[0];
       if Split[0] == User:
-         Set.append(string.strip(Split[1]));
+         Set.append(Split[1].strip());
          continue;
    else:
       if len(Set) == 0:
          continue;
    else:
       if len(Set) == 0:
@@ -74,4 +74,4 @@ while(1):
    if Line == "":
       break;   
    User = Split[0];
    if Line == "":
       break;   
    User = Split[0];
-   Set = [string.strip(Split[1])];
+   Set = [Split[1].strip()];