Changeset 1863
- Timestamp:
- 10/22/04 00:21:21 (20 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/autopykota
r1814 r1863 24 24 # 25 25 # $Log$ 26 # Revision 1.8 2004/10/21 22:21:21 jalet 27 # Fixes a string interpolation problem 28 # 26 29 # Revision 1.7 2004/10/13 08:09:19 jalet 27 30 # More complete PATH. … … 120 123 else : 121 124 self.logdebug("User %s doesn't exist yet." % username) 122 self.logdebug("Creating user %s's account with balance % .2fand quota entries on all existing printers." % (username, options["initbalance"]))125 self.logdebug("Creating user %s's account with balance %s and quota entries on all existing printers." % (username, options["initbalance"])) 123 126 return os.system('edpykota --add --limitby balance --balance "%s" "%s"' % (options["initbalance"], username)) 124 127