Ignore:
Timestamp:
Jun 18, 2018 11:35:30 AM (5 years ago)
Author:
vondreele
Message:

g2strIO
fix magnetic hkl extinctions in reflection generation
remove Uniq & Phi - never used
change all config 'debug' out put to have 'DBG' in message - many places
fix phoenix decode problem for Comments
Display transformation math on Transform dialog box & labels on matrix & vectors
use a general exception in getSelection (G2plot line 7141) to avoid crashes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIdataGUI.py

    r3427 r3438  
    54555455    lines = ""
    54565456    for line in data:
    5457         lines += line.rstrip()+'\n'
     5457        if 'phoenix' in wx.version():
     5458            lines += line.decode('latin-1').rstrip()+'\n'
     5459        else:
     5460            lines += line.rstrip()+'\n'
    54585461    text = wx.StaticText(G2frame.dataWindow,wx.ID_ANY,lines)
    54595462    G2frame.dataWindow.GetSizer().Add(text,1,wx.ALL|wx.EXPAND)
Note: See TracChangeset for help on using the changeset viewer.