Changeset 3249 for trunk


Ignore:
Timestamp:
Jan 30, 2018 8:30:44 AM (7 years ago)
Author:
vondreele
Message:

fix sequential results display for python 3. see GetTypeName? in G2ctrlGUI line 3506

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/GSASIIctrlGUI.py ΒΆ

    r3243 r3249  
    35033503    def GetTypeName(self, row, col):
    35043504        try:
    3505             if self.data[row][col] is None: return None
     3505            if self.data[row][col] is None:
     3506                return wg.GRID_VALUE_STRING
    35063507            return self.dataTypes[col]
    35073508        except (TypeError,IndexError):
Note: See TracChangeset for help on using the changeset viewer.