Explorar el Código

store ALFRED data as JSON

Helge Jung hace 10 años
padre
commit
21eee5fadf
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      ffstatus.py

+ 2 - 1
ffstatus.py

@@ -41,8 +41,9 @@ class AlfredParser:
 			data = dict_merge(data, newdata)
 
 		if not self.alfred_dump is None:
+			jsondata = json.dumps(data, ensure_ascii=False)
 			f = io.open(self.alfred_dump, 'w')
-			f.write(unicode(data))
+			f.write(jsondata)
 			f.close()
 
 		output = StringIO.StringIO()