Changeset 1256
- Timestamp:
- 01/07/04 17:16:32 (21 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/cupspykota
r1240 r1256 24 24 # 25 25 # $Log$ 26 # Revision 1.18 2004/01/07 16:16:32 jalet 27 # Better debugging information 28 # 26 29 # Revision 1.17 2003/12/27 16:49:25 uid67467 27 30 # Should be ok now. … … 230 233 231 234 # And launch it 232 thebackend.logdebug("Starting real backend %s with args %s" % (realbackend, " ".join([ os.environ["DEVICE_URI"]] + sys.argv[1:])))235 thebackend.logdebug("Starting real backend %s with args %s" % (realbackend, " ".join(['"%s"' % a for a in ([os.environ["DEVICE_URI"]] + sys.argv[1:])]))) 233 236 subprocess = PyKotaPopen3([realbackend] + sys.argv[1:], capturestderr=1, bufsize=0, arg0=os.environ["DEVICE_URI"]) 234 237