Changeset 815

Show
Ignore:
Timestamp:
02/05/08 09:32:55 (1 year ago)
Author:
sontag
Message:

Fixes ticket #77. Needed to have GkiRedirection? ctor call the base class (GkiKernel?) ctor

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/gki.py

    r808 r815  
    10451045    """A graphics kernel whose only responsibility is to redirect 
    10461046    metacode to a file-like object. Currently doesn't handle WCS 
    1047     get or set commands. Unclear how important this is. 
     1047    get or set commands. 
    10481048     
    10491049    (This is needed for situations when you append to a graphics 
     
    10511051 
    10521052    def __init__(self, filehandle): 
    1053         self.createFunctionTables() 
    10541053        # Differs from all other constructors in that it takes a 
    10551054        # file-like object as an argument. 
     1055        GkiKernel.__init__(self) 
    10561056        self.filehandle = filehandle 
    10571057        self.wcs = None 
    1058         self.returnData = None 
    10591058 
    10601059    def append(self, metacode):