Changeset 1078 for pykota/trunk
- Timestamp:
- 07/09/03 08:03:41 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/edpykota
r1070 r1078 23 23 # 24 24 # $Log$ 25 # Revision 1.53 2003/07/09 06:03:41 jalet 26 # Fixed typo when using edpykota --prototype 27 # 25 28 # Revision 1.52 2003/07/07 12:11:13 jalet 26 29 # Small fix … … 430 433 if options["prototype"] : 431 434 if protoentry.Exists : 432 protoquota = getattr(self.storage, "get% PQuota" % suffix)(protoentry, printer)435 protoquota = getattr(self.storage, "get%sPQuota" % suffix)(protoentry, printer) 433 436 if not protoquota.Exists : 434 437 self.logger.log_message(_("Prototype %s not found in Quota Storage for printer %s.") % (protoentry.Name, printer.Name)) -
pykota/trunk/NEWS
r1077 r1078 22 22 PyKota NEWS : 23 23 24 - 1.14alpha2 : 25 26 - Typo fixed when using the --prototype option to edpykota 27 24 28 - 1.14alpha1 : 25 29 -
pykota/trunk/pykota/version.py
r1077 r1078 21 21 # 22 22 23 __version__ = "1.14alpha 1_unofficial"23 __version__ = "1.14alpha2_unofficial" 24 24 25 25 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""