addressing review comments

Signed-off-by: Denis Makogon <denys.makogon@oracle.com>
This commit is contained in:
Denis Makogon 2019-01-17 02:10:13 +02:00
parent 0972b5015b
commit aa65f61c6d
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@
class UnsupportedEvent(Exception):
def __init__(self, event_class):
super().__init__(
"Invalid CloudEvent class: " "'{0}'".format(event_class)
"Invalid CloudEvent class: '{0}'".format(event_class)
)