From 0cf791b043337c4a43aca92f68c20cd0f64a36c2 Mon Sep 17 00:00:00 2001 From: "Jeff \"Huey\" Huelsbeck" Date: Mon, 28 Apr 2014 22:44:51 -0400 Subject: [PATCH] Fix for load_genymotion_vms --- Titanium.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Titanium.py b/Titanium.py index 1948f4b..373f3bf 100644 --- a/Titanium.py +++ b/Titanium.py @@ -151,6 +151,7 @@ def load_genymotion_vms(self): if result != '' and result != None: l = [] + result = str(result, encoding = 'utf8') for a in result.splitlines(): ip = a.split(',')[0] name = a.split(',')[1]