Skip to content

Commit

Permalink
New naming values
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Mar 21, 2020
1 parent d6c6152 commit f55ce49
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/easypay/base.py
Expand Up @@ -68,7 +68,7 @@

class Scheduler(threading.Thread):
"""
Scheduler thread that is used to poll the remote easypay
Scheduler thread that is used to poll the remote Easypay
server for the detailed information on the document and
then notify the final API client about the new information.
"""
Expand All @@ -84,7 +84,7 @@ def run(self):
try:
self.tick()
except Exception as exception:
self.api.logger.critical("Unhandled easypay exception raised")
self.api.logger.critical("Unhandled Easypay exception raised")
self.api.logger.error(exception)
lines = traceback.format_exc().splitlines()
for line in lines: self.api.logger.warning(line)
Expand Down Expand Up @@ -137,9 +137,9 @@ class API(
mb.MBAPI
):
"""
Top level entry point for the easypay API services,
Top level entry point for the Easypay API services,
should provide the abstract implementations for the
services offered by easypay.
services offered by Easypay.
Concrete implementations of this API should provide
other storage options that should include persistence.
Expand Down

0 comments on commit f55ce49

Please sign in to comment.