]> git.decadent.org.uk Git - dak.git/commitdiff
fixed update_db not to have a braindead mistake. Don't write code at 1 in the
authorMichael Casadevall <sonicmctails@gmail.com>
Tue, 30 Dec 2008 11:30:25 +0000 (06:30 -0500)
committerMichael Casadevall <sonicmctails@gmail.com>
Tue, 30 Dec 2008 11:30:25 +0000 (06:30 -0500)
morning and then submit it for inclusion ....

Signed-off-by: Michael Casadevall <sonicmctails@gmail.com>
dak/update_db.py

index cda7aeb37baec6507b4050a48abb833c856ae622..33d3ebb9e64a2d94239f6ba5e37da75bc52a35fd 100755 (executable)
@@ -50,6 +50,7 @@ Updates dak's database schema to the lastest version. You should disable crontab
 
 
 ################################################################################
+
     def update_db_to_zero(self):
         # This function will attempt to update a pre-zero database schema to zero
 
@@ -133,7 +134,7 @@ Updates dak's database schema to the lastest version. You should disable crontab
             dakdb = __import__("dakdb", globals(), locals(), ['update'+str(i+1)])
             update_module = getattr(dakdb, "update"+str(i+1))
             update_module.do_update(self)
-            database_revision /+ 1
+            database_revision =+ 1
 
 ################################################################################