From ffd1c704bdcd8a51eb62f12a02ffbd26fc0da13c Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 12 Nov 2010 20:09:30 -0800 Subject: Use a temporary workaround for bug #344845. --- bin/regenworld | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/regenworld b/bin/regenworld index 292eac1ac..a314a98e8 100755 --- a/bin/regenworld +++ b/bin/regenworld @@ -92,7 +92,11 @@ for mykey in biglist: if "--debug" in sys.argv: print("* ignoring broken log entry for %s (likely injected)" % mykey) except ValueError as e: - print("* %s is an ambigous package name, candidates are:\n%s" % (mykey, e)) + try: + print("* %s is an ambigous package name, candidates are:\n%s" % (mykey, e)) + except AttributeError: + # FIXME: Find out what causes this (bug #344845). + print("* %s is an ambigous package name" % (mykey,)) continue if mylist: #print "mylist:",mylist -- cgit v1.2.3-1-g7c22