Fix typo
This commit is contained in:
parent
4d767f026a
commit
d011975fd0
@ -148,7 +148,7 @@ class IssueSelectionWindow(SeriesSelectionWindow):
|
||||
QtWidgets.QApplication.setOverrideCursor(QtGui.QCursor(QtCore.Qt.CursorShape.WaitCursor))
|
||||
try:
|
||||
issue = self.talker.fetch_comic_data(
|
||||
issue_id=self.issue_id, on_rate_limit=RLCallBack(self.ratelimit, 10)
|
||||
issue_id=self.issue_id, on_rate_limit=RLCallBack(self.on_ratelimit, 10)
|
||||
)
|
||||
except TalkerError:
|
||||
pass
|
||||
|
@ -332,7 +332,7 @@ class SeriesSelectionWindow(QtWidgets.QDialog):
|
||||
):
|
||||
QtWidgets.QApplication.setOverrideCursor(QtGui.QCursor(QtCore.Qt.CursorShape.WaitCursor))
|
||||
try:
|
||||
series = self.talker.fetch_series(self.series_id, on_rate_limit=RLCallBack(self.ratelimit, 10))
|
||||
series = self.talker.fetch_series(self.series_id, on_rate_limit=RLCallBack(self.on_ratelimit, 10))
|
||||
except TalkerError:
|
||||
pass
|
||||
self.set_description(self.teDescription, series.description or "")
|
||||
|
Loading…
Reference in New Issue
Block a user