slight modification of internal API: startCompute returns EmulatorCompute object instead of name
diff --git a/emuvim/api/zerorpcapi.py b/emuvim/api/zerorpcapi.py
index c6b9c70..8a08131 100644
--- a/emuvim/api/zerorpcapi.py
+++ b/emuvim/api/zerorpcapi.py
@@ -60,7 +60,8 @@
         # TODO what to return UUID / given name / internal name ?
         logging.debug("RPC CALL: compute start")
         try:
-            return self.dcs.get(dc_name).startCompute(compute_name)
+            c = self.dcs.get(dc_name).startCompute(compute_name)
+            return str(c.name)
         except Exception as ex:
             logging.exception("RPC error.")
             return ex.message