Changeset 4635 for trunk/GSASIIfiles.py
- Timestamp:
- Nov 1, 2020 11:11:13 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIfiles.py
r4594 r4635 644 644 G2Print('Read '+lblFil) 645 645 # scan through each line in this .par file, looking for the matching image rootname 646 fp = open(parFil,' Ur')646 fp = open(parFil,'r') 647 647 for iline,line in enumerate(fp): 648 648 items = line.strip().split(' ') … … 680 680 labels = {} 681 681 errors = [] 682 fp = open(lblFil,' Ur') # read column labels682 fp = open(lblFil,'r') # read column labels 683 683 for iline,line in enumerate(fp): # read label definitions 684 684 line = line.strip()
Note: See TracChangeset
for help on using the changeset viewer.