fix(error): fix PullRequestError

This commit is contained in:
江畅
2020-08-13 18:05:51 +08:00
parent 6c90596f7d
commit 77f9eabe5c
+1 -1
View File
@@ -59,7 +59,7 @@ class PullRequestError(Exception):
""" pull request to Gitee did not succeed.
"""
def __init__(self, reason):
super.__init__()
super(PullRequestError, self).__init__()
self.reason = reason
def __str__(self):