Skip to content

Commit

Permalink
Fixes #8
Browse files Browse the repository at this point in the history
  • Loading branch information
keiranmraine committed Nov 22, 2017
1 parent a5de6fe commit f9d16d0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cgp_seq_input_val/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@ def _excel_to_tsv(self, ofh):
formatting_info=False,
on_demand=True,
ragged_rows=True)
if 'For entry' not in book.sheet_names():
raise ParsingError('xls[x] workbooks require the data sheet to be named "For entry"')

sheet = book.sheet_by_name('For entry')
for r in range(0, sheet.nrows):
simplerow = []
Expand Down

0 comments on commit f9d16d0

Please sign in to comment.