From 3d3cbffa2ee5f513ba36638313816934dedb68c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Ates?= Date: Tue, 8 Oct 2013 17:28:21 +0200 Subject: [PATCH] Fix missing variable renaming. --- models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models.py b/models.py index ac99f60..3f90790 100644 --- a/models.py +++ b/models.py @@ -145,7 +145,7 @@ class Command(): self.address = kwargs.pop('mode', 'rs232') self.command_name = kwargs.pop('command_name', '') self.time = None - self.processed_data = '' + self.data = '' if self.command_name: self.rfu = '\x00' self.type_cmd = STANDARD_COMMANDS[self.command_name]['type']