commit e4e70b93d0756a7201c8a9f3f32721b225ae059b
parent 10e7ce5764b3b456e1f909cd6b6a90f076c2e014
Author: Martin Ashby <martin@ashbysoft.com>
Date: Thu, 17 May 2018 19:17:56 +0000
Fixed serialization problem with numpy array
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/server.py b/server.py
@@ -29,7 +29,7 @@ def send_state():
global all_clients
state = {
"saves": os.listdir(SAVES_DIR),
- "pixels": unicorn.get_pixels()
+ "pixels": unicorn.get_pixels().tolist()
}
stateJson = json.dumps(state)
for client in all_clients:
@@ -106,4 +106,4 @@ def main():
if __name__=="__main__":
main()
-
-\ No newline at end of file
+