Skip to content

Commit

Permalink
fix(mtuzf1): a user comment on same line as nuzgag not processed corr…
Browse files Browse the repository at this point in the history
…ectly (#609)
  • Loading branch information
emorway-usgs authored and langevin-usgs committed Jul 12, 2019
1 parent e4f0222 commit 5e438f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flopy/modflow/mfuzf1.py
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,8 @@ def _parse8(line):
iuzcol = None
iuzopt = 0
line = line_parse(line)
if len(line) > 1:
if((len(line) > 1 and not int(line[0]) < 0) or
(len(line) > 1 and line[1].isdigit())):
iuzrow = pop_item(line, int) - 1
iuzcol = pop_item(line, int) - 1
iftunit = pop_item(line, int)
Expand Down

0 comments on commit 5e438f2

Please sign in to comment.