Changeset 2185 for trunk/GSASII.py
- Timestamp:
- Mar 29, 2016 10:11:57 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASII.py
r2174 r2185 1280 1280 # with extension .instprm, .prm, .inst, or .ins? If so read it 1281 1281 basename = os.path.splitext(filename)[0] 1282 for ext in '. instprm','.prm','.inst','.ins':1282 for ext in '.prm','.inst','.ins','.instprm': 1283 1283 if self.zipfile: 1284 1284 instfile = G2IO.ExtractFileFromZip(self.zipfile, … … 1320 1320 # for multiple reads of one data file, reuse the inst parm file 1321 1321 instfile = lastIparmfile 1322 if self.zipfile:1323 instfile = G2IO.ExtractFileFromZip(self.zipfile,1324 selection=os.path.split(instfile)[1],parent=self)1322 # if self.zipfile: 1323 # instfile = G2IO.ExtractFileFromZip(self.zipfile, 1324 # selection=os.path.split(instfile)[1],parent=self) 1325 1325 if instfile != None and os.path.exists(instfile): 1326 1326 #print 'debug: try read',instfile
Note: See TracChangeset
for help on using the changeset viewer.