From 5760bcd003d4645780bc188e5d8096d9dc07857c Mon Sep 17 00:00:00 2001 From: Chris Lamb Date: Tue, 27 Oct 2009 14:55:35 +0000 Subject: [PATCH] Add missing for loop. Signed-off-by: Chris Lamb --- dak/dakdb/update15.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dak/dakdb/update15.py b/dak/dakdb/update15.py index dd0f9433..10812226 100644 --- a/dak/dakdb/update15.py +++ b/dak/dakdb/update15.py @@ -64,7 +64,8 @@ def do_update(self): c.execute("SELECT id FROM src_format WHERE format_name = '1.0'") formats = c.fetchall() for s in suites: - c.execute("INSERT INTO suite_src_formats (suite, src_format) VALUES(%s, %s)", (s[0], f[0])) + for f in formats: + c.execute("INSERT INTO suite_src_formats (suite, src_format) VALUES(%s, %s)", (s[0], f[0])) print "Authorize all other formats on tpu, unstable & experimental by default" c.execute("SELECT id FROM suite WHERE suite_name IN ('testing-proposed-updates', 'unstable', 'experimental')") -- 2.39.2