Show
Ignore:
Timestamp:
02/10/03 13:07:31 (21 years ago)
Author:
jalet
Message:

Now repykota should output the recorded total page number for each printer too.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/edpykota

    r775 r791  
    1717# 
    1818# $Log$ 
     19# Revision 1.20  2003/02/10 12:07:30  jalet 
     20# Now repykota should output the recorded total page number for each printer too. 
     21# 
    1922# Revision 1.19  2003/02/09 13:40:29  jalet 
    2023# typo 
     
    177180                if self.isValidName(pname) : 
    178181                    self.storage.addPrinter(pname) 
    179                     printernames = [ pname ] 
     182                    printernames = [ (pname, 0) ] 
    180183                else :     
    181184                    raise PyKotaToolError, _("Invalid printer name %s") % pname 
     
    197200            self.logger.log_message(_("Hard limit %i is less than soft limit %i, values will be exchanged.") % (hardlimit, softlimit), "warn") 
    198201            (softlimit, hardlimit) = (hardlimit, softlimit) 
    199         for printer in printernames : 
     202        for (printer, printerpagecounter) in printernames : 
    200203            if options["prototype"] : 
    201204                if options["users"] :