fix print statement
authorTony Mack <tmack@cs.princeton.edu>
Fri, 12 Jun 2009 18:45:49 +0000 (18:45 +0000)
committerTony Mack <tmack@cs.princeton.edu>
Fri, 12 Jun 2009 18:45:49 +0000 (18:45 +0000)
geni/util/slices.py

index 681ab1b..3db122c 100644 (file)
@@ -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