Changeset 849094a in sasview for src/sas/sascalc/dataloader/readers/sesans_reader.py
- Timestamp:
- Sep 22, 2017 7:07:32 PM (7 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 8641070
- Parents:
- af3e9f5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sascalc/dataloader/readers/sesans_reader.py
r574adc7 r849094a 44 44 self.output = [] 45 45 46 line = self. f_open.readline()46 line = self.nextline() 47 47 params = {} 48 48 while not line.startswith("BEGIN_DATA"): … … 50 50 if len(terms) >= 2: 51 51 params[terms[0]] = " ".join(terms[1:]) 52 line = self. f_open.readline()52 line = self.nextline() 53 53 self.params = params 54 54 … … 70 70 "handled by other software.") 71 71 72 headers = self. f_open.readline().split()72 headers = self.nextline().split() 73 73 74 74 self._insist_header(headers, "SpinEchoLength")
Note: See TracChangeset
for help on using the changeset viewer.