Changeset 4227

Show
Ignore:
Timestamp:
06/26/07 12:14:51 (6 years ago)
Author:
DrewCormier
Message:

typo

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • experimental/write_to_file/trunk/write_to_file/write_to_file.py

    r4226 r4227  
    2222    def pushPacket(self, I_data, Q_data): 
    2323        '''Store the data to be written to file when the Write Packet button is bushed''' 
    24         self.gui.I_data.append[self.gui.buffer_count] = I_data 
    25         self.gui.Q_data.append[self.gui.buffer_count] = Q_data 
     24        self.gui.I_data[self.gui.buffer_count] = I_data 
     25        self.gui.Q_data[self.gui.buffer_count] = Q_data 
    2626        
    2727        self.gui.buffer_count = self.gui.buffer_count + 1