renamed create_slice into CreateSliver on the managers side
[sfa.git] / sfa / managers / aggregate_manager_max.py
index ed18d85..f289e7d 100644 (file)
@@ -271,7 +271,7 @@ def ListResources(api, creds, options, call_id):
     return (ret_rspec)
 
 
-def create_slice(api, xrn, creds, rspec_xml, users, call_id):
+def CreateSliver(api, xrn, creds, rspec_xml, users, call_id):
     if Callids().already_handled(call_id): return False
 
     global topology
@@ -338,7 +338,7 @@ def main():
     r = RSpec()
     rspec_xml = open(sys.argv[1]).read()
     #ListResources(None,'foo')
-    create_slice(None, "plc.princeton.sap0", rspec_xml, 'call-id-sap0')
+    CreateSliver(None, "plc.princeton.sap0", rspec_xml, 'call-id-sap0')
     
 if __name__ == "__main__":
     main()