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/repykota

    r775 r791  
    1717# 
    1818# $Log$ 
     19# Revision 1.10  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.9  2003/02/09 13:40:29  jalet 
    2023# typo 
     
    109112        if not printernames : 
    110113            raise PyKotaToolError, _("There's no printer matching %s") % options["printer"] 
    111         for printer in printernames : 
     114        for (printer, printerpagecounter) in printernames : 
    112115            print _("*** Report for %s quota on printer %s") % ((options["users"] and "user") or "group", printer) 
    113116            print _("Pages grace time: %idays") % self.config.getGraceDelay() 
     
    127130            if total :         
    128131                print (" " * 43) + ("Total : %9i" % total) 
     132            print (" " * 44) + ("Real : %9i" % printerpagecounter) 
    129133            print         
    130134