Changeset 1924
- Timestamp:
- 11/15/04 23:12:46 (20 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/cupspykota
r1923 r1924 24 24 # 25 25 # $Log$ 26 # Revision 1.80 2004/11/15 22:12:46 jalet 27 # Fix for the Fix !!! 28 # 26 29 # Revision 1.79 2004/11/15 22:01:34 jalet 27 30 # Improved banner handling. … … 604 607 # Here we absolutely WANT to remove any filename from the command line ! 605 608 arguments = [ "Fake this because we are printing a banner" ] + sys.argv[1:6] 606 self.logdebug("Starting real backend %s with args %s" % (realbackend, " ".join(['"%s"' % a for a in ([os.environ["DEVICE_URI"]] + arguments )])))607 subprocess = PyKotaPopen4([realbackend] + arguments , bufsize=0, arg0=os.environ["DEVICE_URI"])609 self.logdebug("Starting real backend %s with args %s" % (realbackend, " ".join(['"%s"' % a for a in ([os.environ["DEVICE_URI"]] + arguments[1:])]))) 610 subprocess = PyKotaPopen4([realbackend] + arguments[1:], bufsize=0, arg0=os.environ["DEVICE_URI"]) 608 611 609 612 # Save file descriptors, we will need them later.