Changeset 1924

Show
Ignore:
Timestamp:
11/15/04 23:12:46 (19 years ago)
Author:
jalet
Message:

Fix for the Fix !!!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/cupspykota

    r1923 r1924  
    2424# 
    2525# $Log$ 
     26# Revision 1.80  2004/11/15 22:12:46  jalet 
     27# Fix for the Fix !!! 
     28# 
    2629# Revision 1.79  2004/11/15 22:01:34  jalet 
    2730# Improved banner handling. 
     
    604607            # Here we absolutely WANT to remove any filename from the command line ! 
    605608            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"]) 
    608611         
    609612        # Save file descriptors, we will need them later.