From 17ceed0834c0b78e21a115c3bcfa7a56bde9498e Mon Sep 17 00:00:00 2001 From: Chris Lamb Date: Fri, 30 Oct 2009 14:28:33 +0000 Subject: [PATCH] 'as' is a reserved word in Python 2.6. Signed-off-by: Chris Lamb --- dak/new_security_install.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dak/new_security_install.py b/dak/new_security_install.py index 3eb19643..55a48749 100755 --- a/dak/new_security_install.py +++ b/dak/new_security_install.py @@ -152,9 +152,9 @@ def advisory_info(): svs = srcverarches.keys() svs.sort() for sv in svs: - as = srcverarches[sv].keys() - as.sort() - print " %s (%s)" % (sv, ", ".join(as)) + as_ = srcverarches[sv].keys() + as_.sort() + print " %s (%s)" % (sv, ", ".join(as_)) def prompt(opts, default): p = "" -- 2.39.5