Ignore:
Timestamp:
Dec 8, 2017 9:07:11 AM (5 years ago)
Author:
vondreele
Message:

fix problem in Formula = line where " was used around formula

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIdataGUI.py

    r3172 r3182  
    39683968                    for item in Comments:           #grab chemical formula from Comments
    39693969                        if 'formula' in item[:15].lower():
    3970                             formula = item.split('=')[1].split()
     3970                            formula = item.split('=')[1].replace('"','').split()
    39713971                            try:
    39723972                                elems = formula[::2]
Note: See TracChangeset for help on using the changeset viewer.