Fixing issue with slice
diff --git a/xos/observers/helloworldservice/steps/sync_helloworldtenant.py b/xos/observers/helloworldservice/steps/sync_helloworldtenant.py
index ddb6e02..cb0f7f4 100644
--- a/xos/observers/helloworldservice/steps/sync_helloworldtenant.py
+++ b/xos/observers/helloworldservice/steps/sync_helloworldtenant.py
@@ -23,7 +23,7 @@
         open('log','w').write(record.display_message + '\n');
 	service = HelloWorldService.get_service_objects().filter(id = record.provider_service.id)[0];
 	for slice in service.slices.all():
-		open('log','w').write(slice + '\n');
+		open('log','w').write("got a slice" + '\n');
 		for instance in slice.instances.all():
             		open('log','w').write(instance + '\n');
             		instance.userData = "packages:\n  - apache2\nruncmd:\n  - update-rc.d apache2 enable\n  - service apache2 start\nwrite_files:\n-   content: Hello %s\n    path: /var/www/html/hello.txt"%record.display_message