b46af63
diff -Nur calibre-2.9.0.orig/src/calibre/gui2/update.py calibre-2.9.0/src/calibre/gui2/update.py
b46af63
--- calibre-2.9.0.orig/src/calibre/gui2/update.py	2014-11-08 21:43:22.888681538 -0700
b46af63
+++ calibre-2.9.0/src/calibre/gui2/update.py	2014-11-08 21:45:27.363383815 -0700
b46af63
@@ -63,20 +63,6 @@
b46af63
         while not self.shutdown_event.is_set():
830d201
             calibre_update_version = NO_CALIBRE_UPDATE
830d201
             plugins_update_found = 0
830d201
-            try:
830d201
-                version = get_newest_version()
830d201
-                if version[:2] > numeric_version[:2]:
830d201
-                    calibre_update_version = version
830d201
-            except Exception as e:
830d201
-                prints('Failed to check for calibre update:', as_unicode(e))
830d201
-            try:
830d201
-                update_plugins = get_plugin_updates_available(raise_error=True)
830d201
-                if update_plugins is not None:
830d201
-                    plugins_update_found = len(update_plugins)
830d201
-            except Exception as e:
830d201
-                prints('Failed to check for plugin update:', as_unicode(e))
830d201
-            if calibre_update_version != NO_CALIBRE_UPDATE or plugins_update_found > 0:
b46af63
-                self.signal.update_found.emit(calibre_update_version, plugins_update_found)
b46af63
             self.shutdown_event.wait(self.INTERVAL)
3e00138
 
b46af63
     def shutdown(self):