- updated TODO

- added dependenciesTest after every reagent run
- print sqlite error when triggering ImportError exception


git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@1084 cd1c1023-2f26-0410-ae45-c471fc1f0318
This commit is contained in:
(no author)
2008-01-23 13:57:49 +00:00
parent 83316915f6
commit a8c1d25ee1
3 changed files with 8 additions and 3 deletions
+2 -1
View File
@@ -1,7 +1,6 @@
TODO list:
- check mail error (*)
- update progress in calculating removal (*)
- add deptest check for every reagent run (*)
- change package naming format adding category
- migrate server code to ServerInterface
- Community repositories
@@ -10,6 +9,8 @@ TODO list:
- handle multiuser on entropy server using equo interface
Spritz:
- handle config files updates interface
- add masking interface
- handle queue dependencies in the queue tab too
- add branch switching menu+stuff
- wrap root password request
+2 -2
View File
@@ -30,8 +30,8 @@ try: # try with sqlite3 from python 2.5 - default one
except ImportError: # fallback to embedded pysqlite
try:
from pysqlite2 import dbapi2
except ImportError:
raise exceptionTools.SystemError("Entropy needs sqlite+pysqlite or Python compiled with sqlite support. Cannot continue.")
except ImportError, e:
raise exceptionTools.SystemError("Entropy needs a working sqlite+pysqlite or Python compiled with sqlite support. Error: %s" % (str(e),))
import dumpTools
+4
View File
@@ -296,6 +296,10 @@ def update(options):
dbconn.commitChanges()
# regen dependstable
dependsTableInitialize(dbconn, False)
dbconn.commitChanges()
# checking dependencies and print issues
dependenciesTest()
dbconn.closeDB()