From 7f3c2bbf530fb362fd6c674c19425999a20542e4 Mon Sep 17 00:00:00 2001 From: Senad Uka Date: Sun, 24 Jan 2016 09:25:55 +0100 Subject: [PATCH] fixed wrong variable name in sync --- controller/state/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/state/__init__.py b/controller/state/__init__.py index bf13a70..af6b5a5 100644 --- a/controller/state/__init__.py +++ b/controller/state/__init__.py @@ -16,7 +16,7 @@ def sync(): local_state = local.data - changer = Changer(local_state, remote_state) + changer = Changer(local_state, server_state) current_state = changer.process_change() server.post_state(current_state)