Changeset 2338


Ignore:
Timestamp:
Jun 21, 2016 10:16:27 PM (7 years ago)
Author:
toby
Message:

restore missing help files, fix import of new .imgctrl to table

Location:
trunk
Files:
5 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIimgGUI.py

    r2322 r2338  
    20442044                S = File.readline()
    20452045                continue
    2046             [key,val] = S[:-1].split(':')
     2046            [key,val] = S.strip().split(':',1)
     2047            if val.find(':') != -1:
     2048                #print 'rejecting ',key,val
     2049                S = File.readline()
     2050                continue
    20472051            if key in ['type','calibrant','binType','SampleShape',]:    #strings
    20482052                save[key] = val
Note: See TracChangeset for help on using the changeset viewer.