From 9e180d6b00fa5b09524a8d586248643e1d785cb7 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Thu, 12 Oct 2017 20:12:12 +0200 Subject: [PATCH] Minfix --- feature/rfid-read/source/read.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/feature/rfid-read/source/read.py b/feature/rfid-read/source/read.py index a35bb50..6809b7c 100644 --- a/feature/rfid-read/source/read.py +++ b/feature/rfid-read/source/read.py @@ -28,10 +28,10 @@ if status != MIFAREReader.MI_OK: # [6] Print UID hexCode = []; -hexcode.append( str(hex(uid[0]))[2:] ); -hexcode.append( str(hex(uid[1]))[2:] ); -hexcode.append( str(hex(uid[2]))[2:] ); -hexcode.append( str(hex(uid[3]))[2:] ); +hexCode.append( str(hex(uid[0]))[2:] ); +hexCode.append( str(hex(uid[1]))[2:] ); +hexCode.append( str(hex(uid[2]))[2:] ); +hexCode.append( str(hex(uid[3]))[2:] ); if( len(hexCode[0]) == 1 ):