From: Tony Mack Date: Fri, 12 Jun 2009 18:45:49 +0000 (+0000) Subject: fix print statement X-Git-Tag: sfa-0.9-0@14641~287 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=4eb9196cf152147a1691dda5e5291ce1910c9eb8;p=sfa.git fix print statement --- diff --git a/geni/util/slices.py b/geni/util/slices.py index 681ab1bb..3db122ce 100644 --- a/geni/util/slices.py +++ b/geni/util/slices.py @@ -243,8 +243,9 @@ class Slices(SimpleStorage): for aggregate in rspecs.keys(): try: aggregates[aggregate].create_slice(credential, hrn, rspecs[aggregate]) + print aggregate except: - print >> log, "Error creating slice %(hrn)% at aggregate %(aggregate)%" % locals() + print >> log, "Error creating slice %(hrn)s at aggregate %(aggregate)s" % locals() return 1