From 0445ff2388dad85b5e51857fc4033b760d6063bf Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 12 Aug 2011 21:18:00 -0600 Subject: [PATCH] Increase the hangcheck timeout when adding books to the GUI by 50% --- src/calibre/gui2/add.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/add.py b/src/calibre/gui2/add.py index 45eb09f066..928f68573b 100644 --- a/src/calibre/gui2/add.py +++ b/src/calibre/gui2/add.py @@ -239,7 +239,7 @@ class DBAdder(QObject): # {{{ class Adder(QObject): # {{{ - ADD_TIMEOUT = 600 # seconds + ADD_TIMEOUT = 900 # seconds (15 minutes) def __init__(self, parent, db, callback, spare_server=None): QObject.__init__(self, parent)