Show
Ignore:
Timestamp:
10/09/03 23:25:26 (21 years ago)
Author:
jalet
Message:

Multiple printer names or wildcards can be passed on the command line
separated with commas.
Beta phase.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/storages/pgstorage.py

    r1149 r1156  
    2222# 
    2323# $Log$ 
     24# Revision 1.20  2003/10/09 21:25:26  jalet 
     25# Multiple printer names or wildcards can be passed on the command line 
     26# separated with commas. 
     27# Beta phase. 
     28# 
    2429# Revision 1.19  2003/10/08 07:01:20  jalet 
    2530# Job history can be disabled. 
     
    303308        if result : 
    304309            for record in result : 
    305                 if self.tool.matchString(record["printername"], [ printerpattern ]) : 
     310                if self.tool.matchString(record["printername"], printerpattern.split(",")) : 
    306311                    printer = StoragePrinter(self, record["printername"]) 
    307312                    printer.ident = record.get("id")