Changeset 1116 for pykota/trunk/bin
- Timestamp:
- 08/18/03 18:20:59 (21 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/pykota
r1113 r1116 23 23 # 24 24 # $Log$ 25 # Revision 1.38 2003/08/18 16:20:59 jalet 26 # Improvement of the printing system detection code. 27 # 25 28 # Revision 1.37 2003/07/29 20:55:17 jalet 26 29 # 1.14 is out ! … … 210 213 if Kseen is None : 211 214 Kseen = 1 # we assume the user wants at least one copy... 215 if (rseen is None) and jseen and Pseen and nseen : 216 self.logger.log_message(_("Printer hostname undefined, set to 'localhost'"), "warn") 217 rseen = "localhost" 212 218 if jseen and Pseen and nseen and rseen : 213 219 # job is always in stdin (None) 214 220 return ("LPRNG", rseen, Pseen, nseen, jseen, None, Kseen) 221 self.logger.log_message(_("Printing system unknown, args=%s") % " ".join(sys.argv), "warn") 215 222 return (None, None, None, None, None, None, None) # Unknown printing system 216 223