Changeset 662

Show
Ignore:
Timestamp:
10/19/05 23:08:57 (18 years ago)
Author:
jerome
Message:

Fixed an incompatibility with Python 2.1, thx to
Frank Koormann from Intevation.

Location:
tea4cups/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • tea4cups/trunk/NEWS

    r660 r662  
    2323Tea4CUPS News : 
    2424 
     25  * 3.11 :  
     26   
     27    - Fixed an incompatibility with Python 2.1, thanks to Frank 
     28      Koormann. 
     29       
    2530  * 3.10 : 
    2631   
  • tea4cups/trunk/tea4cups

    r659 r662  
    3737from struct import pack, unpack 
    3838 
    39 version = "3.10_unofficial" 
     39version = "3.11_unofficial" 
    4040 
    4141class TeeError(Exception): 
     
    692692        self.pipes = { 0: (0, 1) } 
    693693        branches = self.enumBranches(self.PrinterName, "prehook") 
    694         for b in branches : 
     694        for b in branches.keys() : 
    695695            self.pipes[b.split("_", 1)[1]] = os.pipe() 
    696696        retcode = self.runCommands("prehook", branches, serialize)