5580 |
5580 |
5581 def __versionsDownloadCanceled(self): |
5581 def __versionsDownloadCanceled(self): |
5582 """ |
5582 """ |
5583 Private method called to cancel the version check. |
5583 Private method called to cancel the version check. |
5584 """ |
5584 """ |
5585 if self.http is not None: |
5585 if self.__replies: |
5586 self.__versionCheckCanceled = True |
5586 self.__versionCheckCanceled = True |
5587 self.http.abort() |
5587 self.__replies[-1].abort() |
5588 |
5588 |
5589 def __showAvailableVersionInfos(self, versions): |
5589 def __showAvailableVersionInfos(self, versions): |
5590 """ |
5590 """ |
5591 Private method to show the versions available for download. |
5591 Private method to show the versions available for download. |
5592 |
5592 |