Skip to content

Commit

Permalink
Weird space fix
Browse files Browse the repository at this point in the history
  • Loading branch information
samyun committed Jan 17, 2019
1 parent 95d9bcf commit 6fc84ac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion EMS Paperwork Tool/autofill_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -1106,7 +1106,8 @@ def get_list_of_schedule(self, column_number):

if len(raw_list) > 1:
while i < len(raw_list):
if raw_list[i][:2] == " ":
foo = raw_list[i][:2]
if raw_list[i][:2] == "" or raw_list[i][:2].isspace():
i += 1
else:
# parse time
Expand Down

0 comments on commit 6fc84ac

Please sign in to comment.