Correct the param type for mapPriority (#2578)

Closes #2577
This commit is contained in:
Joey Wilhelm
2018-11-01 18:55:01 -04:00
committed by Sebastian Rittau
parent b77da551d9
commit 292cbf1a35

View File

@@ -132,7 +132,7 @@ class SysLogHandler(Handler):
facility: int = ..., socktype: _SocketKind = ...) -> None: ...
def encodePriority(self, facility: Union[int, str],
priority: Union[int, str]) -> int: ...
def mapPriority(self, levelName: int) -> str: ...
def mapPriority(self, levelName: str) -> str: ...
class NTEventLogHandler(Handler):