Changeset 2036 for pykota/trunk
- Timestamp:
- 01/21/05 15:40:01 (20 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/edpykota
r2030 r2036 24 24 # 25 25 # $Log$ 26 # Revision 1.86 2005/01/21 14:40:01 jalet 27 # edpykota's --delete command line tool doesn't use "*" as its default argument 28 # anymore when the user doesn't pass any real argument :-) 29 # 26 30 # Revision 1.85 2005/01/18 19:47:49 jalet 27 31 # Big bug fix wrt the datelimit attribute … … 583 587 else : 584 588 names = getattr(self.storage, "getAll%ssNames" % suffix)() 585 else : 586 names = [ "*" ] # all users 589 elif options["delete"] : 590 raise PyKotaToolError, _("You have to pass user or group names on the command line") 591 else : 592 names = [ "*" ] # all users or groups 587 593 588 594 printersgroups = [] -
pykota/trunk/NEWS
r2032 r2036 22 22 PyKota NEWS : 23 23 24 - 1.21alpha22 : 25 26 - edpykota's --delete command line option doesn't consider 27 '*' to be the default argument anymore :-) 28 24 29 - 1.21alpha21 : 25 30 -
pykota/trunk/pykota/version.py
r2032 r2036 22 22 # 23 23 24 __version__ = "1.21alpha2 1_unofficial"24 __version__ = "1.21alpha22_unofficial" 25 25 26 26 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""