Changeset 1977
- Timestamp:
- 12/10/04 00:03:57 (20 years ago)
- Location:
- pykota/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/NEWS
r1975 r1977 24 24 - 1.21alpha12 : 25 25 26 - Fixed a bug with non standard pkbanner command lines. 27 26 28 - Now logs as errors the differences between precomputed and 27 29 computed job sizes. **CUPS only for now** -
pykota/trunk/pykota/tool.py
r1960 r1977 22 22 # 23 23 # $Log$ 24 # Revision 1.146 2004/12/09 23:03:57 jalet 25 # Fixed a bug when pkbanner's output was piped into another command (e.g. gs) 26 # 24 27 # Revision 1.145 2004/11/27 22:52:07 jalet 25 28 # Now PyKota searches its configuration files first in system user pykota's … … 1267 1270 if bannerfileorcommand : 1268 1271 banner = "" # no banner by default 1269 if (os.access(bannerfileorcommand, os.X_OK)) :1272 if os.access(bannerfileorcommand, os.X_OK) or not os.path.isfile(bannerfileorcommand) : 1270 1273 self.logdebug("Launching %s to generate a banner." % bannerfileorcommand) 1271 1274 child = popen2.Popen3(bannerfileorcommand, capturestderr=1)