Remove : for configexc.NoOptionError.
This commit is contained in:
parent
e94e90baec
commit
7f3070f793
@ -57,7 +57,7 @@ class NoOptionError(Error):
|
|||||||
"""Raised when an option was not found."""
|
"""Raised when an option was not found."""
|
||||||
|
|
||||||
def __init__(self, option, section):
|
def __init__(self, option, section):
|
||||||
super().__init__("No option {!r} in section: {!r}".format(
|
super().__init__("No option {!r} in section {!r}".format(
|
||||||
option, section))
|
option, section))
|
||||||
self.option = option
|
self.option = option
|
||||||
self.section = section
|
self.section = section
|
||||||
|
Loading…
Reference in New Issue
Block a user