[Pcsclite-cvs-commit] r6648 - /trunk/PCSC/src/spy/pcsc-spy

rousseau at users.alioth.debian.org rousseau at users.alioth.debian.org
Thu Jun 6 16:56:50 UTC 2013


Author: rousseau
Date: Thu Jun  6 16:56:47 2013
New Revision: 6648

URL: http://svn.debian.org/wsvn/pcsclite/?sc=1&rev=6648
Log:
Fix PEP8 warning

pcsc-spy:34:13: E128 continuation line under-indented for visual indent

Modified:
    trunk/PCSC/src/spy/pcsc-spy

Modified: trunk/PCSC/src/spy/pcsc-spy
URL: http://svn.debian.org/wsvn/pcsclite/trunk/PCSC/src/spy/pcsc-spy?rev=6648&op=diff
==============================================================================
--- trunk/PCSC/src/spy/pcsc-spy (original)
+++ trunk/PCSC/src/spy/pcsc-spy Thu Jun  6 16:56:47 2013
@@ -30,8 +30,7 @@
 
 def hexdump(data_buffer, width=16):
     def quotechars(data_buffer):
-        return ''.join(['.', chr(c)][c > 31 and c < 127]
-            for c in data_buffer)
+        return ''.join(['.', chr(c)][c > 31 and c < 127] for c in data_buffer)
 
     result = []
     offset = 0




More information about the Pcsclite-cvs-commit mailing list