python3 - 2to3 + miscell obvious tweaks
[sfa.git] / sfa / dummy / dummy_testbed_api_client.py
index 57a0482..9df5144 100644 (file)
@@ -1,4 +1,4 @@
-from __future__ import print_function
+
 
 from datetime import datetime
 import time
@@ -8,7 +8,8 @@ dummy_url = "http://localhost:8080"
 dummy_api = xmlrpc_client.ServerProxy(dummy_url)
 
 # Add a user:
-my_user_id = dummy_api.AddUser({'email': 'john.doe@test.net', 'user_name': 'john.doe', 'keys': ['copy here your ssh-rsa public key']})
+my_user_id = dummy_api.AddUser({'email': 'john.doe@test.net', 'user_name': 'john.doe', 'keys': [
+                               'copy here your ssh-rsa public key']})
 # Attach the user with the slice named : slice2 :
 dummy_api.AddUserToSlice({'slice_id': 2, 'user_id': my_user_id})