From 187d3a2651818cf39debd671a42eac9d45896a3a Mon Sep 17 00:00:00 2001 From: ultramagnus_tcv Date: Tue, 28 Jul 2015 13:59:15 -0500 Subject: [PATCH] Some moving around of stuff. Flailing. --- Beginning.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Beginning.py b/Beginning.py index 8511a01..4658d41 100644 --- a/Beginning.py +++ b/Beginning.py @@ -8,7 +8,6 @@ finally: SOSSlice = SOS.encode('hex_codec')[0x10:0x14] print '0x' + SOSSlice -SOSstruct = str(struct.pack('>2s', SOSSlice) [0]) -print 'Packed: ' + SOSstruct -SOSunhexlify = binascii.unhexlify(SOSstruct) +SOSunhexlify = binascii.unhexlify(SOSSlice) print 'Unhexlified: ' + SOSunhexlify +SOSstruct = str(struct.pack('>2s', SOSunhexlify)[0])