]> git.decadent.org.uk Git - dak.git/commitdiff
suites -> _suites
authorMike O'Connor <stew@vireo.org>
Sat, 9 Jan 2010 19:50:47 +0000 (14:50 -0500)
committerMike O'Connor <stew@vireo.org>
Sat, 9 Jan 2010 19:50:47 +0000 (14:50 -0500)
Signed-off-by: Mike O'Connor <stew@vireo.org>
dak/dakdb/update28.py

index 7bb3961384374fb60e20e34841e6167d6a341412..19c354a7d9fff23b9a6b0b373983f0d8158a149a 100755 (executable)
@@ -34,7 +34,7 @@ from daklib.dak_exceptions import DBUpdateError
 
 ################################################################################
 
-def suites():
+def _suites():
     """
     return a list of suites to operate on
     """
@@ -141,8 +141,7 @@ def do_update(self):
 
         c.execute("""CREATE INDEX ind_deb_contents_binary ON deb_contents(binary_id);""" )
 
-
-        suites = suites()
+        suites = _suites()
 
         for suite in [i.lower() for i in suites]:
             suite_id = DBConn().get_suite_id(suite)