Removed updateFormat() thread from startup - causing problems when daemonized

This commit is contained in:
rembo10
2012-03-23 12:35:23 +00:00
parent 29ae16a5aa
commit ab8744e30d

View File

@@ -666,9 +666,6 @@ def dbcheck():
c.execute('SELECT Format from tracks')
except sqlite3.OperationalError:
c.execute('ALTER TABLE tracks ADD COLUMN Format TEXT DEFAULT NULL')
# Update the Format of files in library, this won't do anything if all files have a known format
threading.Thread(target=importer.updateFormat).start()
conn.commit()
c.close()