diff options
Diffstat (limited to 'management/parsers/ups2018.py')
| -rw-r--r-- | management/parsers/ups2018.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/management/parsers/ups2018.py b/management/parsers/ups2018.py index 0d6d798..ad8322c 100644 --- a/management/parsers/ups2018.py +++ b/management/parsers/ups2018.py @@ -221,10 +221,10 @@ class Parser(AbstractParser):          responses = yield from asyncio.gather(*futures)          return responses -    def get_source_from_months(self, async=True): +    def get_source_from_months(self, asynchronous=True):          events = [] -        if async: +        if asynchronous:              loop = asyncio.get_event_loop()              events = loop.run_until_complete(self.get_months_async())          else: | 
