6074d15
diff -uNr calibre.old/src/calibre/gui2/ui.py calibre/src/calibre/gui2/ui.py
6074d15
--- calibre.old/src/calibre/gui2/ui.py	2011-01-11 22:08:00.684511166 +0100
6074d15
+++ calibre/src/calibre/gui2/ui.py	2011-01-11 22:11:34.522099663 +0100
6074d15
@@ -590,7 +590,7 @@
6074d15
         if write_settings:
6074d15
             self.write_settings()
6074d15
         self.check_messages_timer.stop()
6074d15
-        self.update_checker.terminate()
6074d15
+        # self.update_checker.terminate()
6074d15
         self.listener.close()
6074d15
         self.job_manager.server.close()
6074d15
         while self.spare_servers:
6074d15
diff -uNr calibre.old/src/calibre/gui2/update.py calibre/src/calibre/gui2/update.py
6074d15
--- calibre.old/src/calibre/gui2/update.py	2011-01-11 22:08:00.684511166 +0100
6074d15
+++ calibre/src/calibre/gui2/update.py	2011-01-11 22:11:16.678301138 +0100
6074d15
@@ -87,12 +87,12 @@
3e00138
 
3e00138
 class UpdateMixin(object):
3e00138
 
3e00138
-    def __init__(self, opts):
Ionuț Arțăriși c3c738d
-        if not opts.no_update_check:
Ionuț Arțăriși c76318b
-            self.update_checker = CheckForUpdates(self)
d4b7b81
-            self.update_checker.update_found.connect(self.update_found,
d4b7b81
-                    type=Qt.QueuedConnection)
d4b7b81
-            self.update_checker.start()
3e00138
+    #def __init__(self, opts):
d4b7b81
+        #if not opts.no_update_check:
d4b7b81
+        #    self.update_checker = CheckForUpdates(self)
d4b7b81
+        #    self.update_checker.update_found.connect(self.update_found,
d4b7b81
+        #            type=Qt.QueuedConnection)
d4b7b81
+        #    self.update_checker.start()
3e00138
 
3e00138
     def update_found(self, version):
3e00138
         os = 'windows' if iswindows else 'osx' if isosx else 'linux'