Changeset 2580

Show
Ignore:
Timestamp:
11/10/05 09:44:58 (18 years ago)
Author:
jerome
Message:

Fixed a missing return statement which caused the original CUPS' backend exit status to be ignored.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/cupspykota

    r2566 r2580  
    10461046        else :     
    10471047            infile = None 
    1048         self.runOriginalBackend(infile) 
     1048        retcode = self.runOriginalBackend(infile) 
    10491049        if self.InputFile is None : 
    10501050            infile.close() 
    10511051        self.logdebug("Job's datas sent to real backend.") 
     1052        return retcode 
    10521053         
    10531054    def runOriginalBackend(self, filehandle=None, isBanner=0) :