Changeset 1521
- Timestamp:
- Oct 7, 2014 10:24:28 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIimgGUI.py
r1518 r1521 15 15 16 16 ''' 17 import os.path 17 18 import wx 18 19 import wx.lib.scrolledpanel as wxscroll … … 287 288 if dlg.ShowModal() == wx.ID_OK: 288 289 filename = dlg.GetPath() 290 # make sure extension is .imctrl 291 filename = os.path.splitext(filename)[0]+'.imctrl' 289 292 File = open(filename,'w') 290 293 save = {} -
trunk/GSASIIlog.py
r1513 r1521 287 287 288 288 def __str__(self): 289 return self.obj.__str__() 290 def __repr__(self): 289 291 return self.obj.__str__() + " : " + str(self.treeRefs) + ',' + str(self.indexRefs) 290 292 … … 330 332 331 333 def __str__(self): 334 return self.obj.__str__() 335 def __repr__(self): 332 336 return self.obj.__str__() + " : " + str(self.treeRefs) + ',' + str(self.indexRefs) 333 337
Note: See TracChangeset
for help on using the changeset viewer.