Show
Ignore:
Timestamp:
06/18/05 00:03:56 (19 years ago)
Author:
jerome
Message:

3.00 is now out !
Official packages available later in the night...

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • tea4cups/trunk/tea4cups

    r646 r648  
    3939from struct import unpack 
    4040 
    41 version = "2.12alpha3_unofficial" 
     41version = "3.00_unofficial" 
    4242 
    4343class TeeError(Exception): 
     
    777777        if pid == 0 : 
    778778            if self.InputFile is None : 
    779                 f=open(self.dataFile, "rb") 
     779                f = open(self.dataFile, "rb") 
    780780                os.dup2(f.fileno(), 0) 
    781781                f.close() 
     
    791791                status = os.waitpid(pid, 0)[1] 
    792792            except OSError, (err, msg) : 
    793                 if err == 4 and self.gotSigTerm : 
     793                if (err == 4) and self.gotSigTerm : 
    794794                    os.kill(pid, signal.SIGTERM) 
    795795                    killed = 1