FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit c7161913 authored by L. Bower's avatar L. Bower
Browse files

removing call so self.span_days as is a local variable

parent 36526c87
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@ class ProcessorEpidemiology(Processor):
# if more than 999 days
if len(str(span_days[0]))>3:
# assume it is a date string
start_date = datetime.datetime.strptime(self.span_days[0]+'0300','%Y%m%d%H%M')
start_date = datetime.datetime.strptime(span_days[0]+'0300','%Y%m%d%H%M')
else:
date_shift0 = datetime.timedelta(days=span_days[0])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment