increase db timeout

This commit is contained in:
j 2016-01-29 22:21:13 +05:30
commit aac0a069d2
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ class Icons(dict):
self.create()
def connect(self):
conn = sqlite3.connect(self._db, timeout=10)
conn = sqlite3.connect(self._db, timeout=90)
return conn
def create(self):