Fix missing variable renaming.

This commit is contained in:
Mikaël Ates 2013-10-08 17:28:21 +02:00
parent bee762c6b2
commit 3d3cbffa2e
1 changed files with 1 additions and 1 deletions

View File

@ -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']