Skip to content

Commit 3323f3d

Browse files
committed
lint: correct subclass path
Surfaced via mypy, corrected. Unclear why this wouldn't have been caught by other tools. Signed-off-by: Mike Fiedler <miketheman@gmail.com>
1 parent 07231e6 commit 3323f3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

warehouse/legacy/api/xmlrpc/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def faultString(self): # NOQA: ignore=N802
195195
return f"client error; {self.exc}"
196196

197197

198-
class XMLRPCWrappedError(xmlrpc.server.Fault):
198+
class XMLRPCWrappedError(xmlrpc.client.Fault):
199199
def __init__(self, exc):
200200
# NOQA due to N815 'mixedCase variable in class scope',
201201
# This is the interface for specifying fault code and string for XmlRpcError

0 commit comments

Comments
 (0)