Remove buggy char
This commit is contained in:
parent
2c6a8be206
commit
cc171007c9
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ for line in url:
|
||||||
if options.itp:
|
if options.itp:
|
||||||
if in_prep_yesterday.match(line): days = '1'
|
if in_prep_yesterday.match(line): days = '1'
|
||||||
elif in_prep_today.match(line): days = '0'
|
elif in_prep_today.match(line): days = '0'
|
||||||
else: 0 days = line.split(' ')[0]
|
else: days = line.split(' ')[0]
|
||||||
else:
|
else:
|
||||||
if req_yesterday.match(line): days = '1'
|
if req_yesterday.match(line): days = '1'
|
||||||
elif req_today.match(line): days = '0'
|
elif req_today.match(line): days = '0'
|
||||||
|
|
Loading…
Reference in a new issue