Changeset 3427


Ignore:
Timestamp:
Jun 10, 2018 3:17:30 PM (5 years ago)
Author:
toby
Message:

fix minor bugs

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIIO.py

    r3426 r3427  
    564564    return
    565565
    566 objectScanIgnore = [int,bool,float,str,np.float64,np.ndarray]
     566objectScanIgnore = [int,bool,float,str,long,np.float64,np.ndarray,G2obj.G2VarObj]
    567567if '2' in platform.python_version_tuple()[0]:
    568568    objectScanIgnore += [unicode,]
  • trunk/GSASIIdataGUI.py

    r3396 r3427  
    27392739            self.dirname = os.path.abspath(os.path.dirname(arg[1]))
    27402740            if self.dirname:
     2741                self.GSASprojectfile = os.path.split(self.GSASprojectfile)[1]
    27412742                os.chdir(self.dirname)
    27422743                self.LastGPXdir = self.dirname
  • trunk/GSASIIrestrGUI.py

    r3390 r3427  
    783783            if len(ids) > 0:
    784784                value = 1.0
    785                 dlg = G2G.SingleFloatDialog(G2frame,'Angle','Enter unit cell sum ',value,[-1.e6,1.e6],'%.2f')
     785                dlg = G2G.SingleFloatDialog(G2frame,'Cell sum','Enter unit cell sum ',value,[-1.e6,1.e6],'%.2f')
    786786                if dlg.ShowModal() == wx.ID_OK:
    787787                    value = dlg.GetValue()               
Note: See TracChangeset for help on using the changeset viewer.