Skip to content

Commit

Permalink
fix for tab chars in 'w' instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
jtwhite79 committed Jul 13, 2022
1 parent 5281538 commit 5bb5395
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyemu/pst/pst_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1460,7 +1460,8 @@ def _execute_ins_line(self, ins_line, ins_lcount):
break
# copy a version of line commas replaced
# (to support comma sep strings)
rline = line.replace(",", " ")
rline = line.replace(",", " ").replace("\t","")

cursor_pos = line.index(mstr) + len(mstr)

# line advance
Expand Down

0 comments on commit 5bb5395

Please sign in to comment.