* ud-arbimport: os.exit -> sys.exit
authorMark Hymers <mark@hymers.org.uk>
Wed, 26 Dec 2007 20:55:32 +0000 (20:55 +0000)
committerMark Hymers <mark@hymers.org.uk>
Wed, 26 Dec 2007 20:55:32 +0000 (20:55 +0000)
debian/changelog
ud-arbimport

index 86b09e6..301da9a 100644 (file)
@@ -19,8 +19,9 @@ userdir-ldap (0.3.15+xxx) XXunstable; urgency=low
   * ud-useradd: Avoid a TypeError exception when constructing the template
     filename
   * Remove use of deprecated functions from the string module 
+  * ud-arbimport: os.exit -> sys.exit
 
- -- Mark Hymers <mhy@debian.org>  Wed, 26 Dec 2007 20:49:18 +0000
+ -- Mark Hymers <mhy@debian.org>  Wed, 26 Dec 2007 20:54:28 +0000
 
 userdir-ldap (0.3.15) unstable; urgency=low
 
index 5d5a37d..7d306f7 100755 (executable)
@@ -36,7 +36,7 @@ for (switch, val) in options:
        NoAct = 1;
 if len(arguments) == 0:
    print "Give the key to assignt to then the file to import";
-   os.exit(0);
+   sys.exit(0)
 
 # Main program starts here
 l = passwdAccessLDAP(LDAPServer, BaseDn, AdminUser)