From: <lu...@us...> - 2010-04-07 06:48:56
|
Revision: 388 http://pyscard.svn.sourceforge.net/pyscard/?rev=388&view=rev Author: ludov Date: 2010-04-07 06:48:50 +0000 (Wed, 07 Apr 2010) Log Message: ----------- Correctly format the Logical channel number assignment line Modified Paths: -------------- trunk/contrib/parseATR/parseATR.py Modified: trunk/contrib/parseATR/parseATR.py =================================================================== --- trunk/contrib/parseATR/parseATR.py 2010-04-07 06:43:58 UTC (rev 387) +++ trunk/contrib/parseATR/parseATR.py 2010-04-07 06:48:50 UTC (rev 388) @@ -436,7 +436,7 @@ v = (cc >> 3) & 3 t = ["No logical channel\n", "by the interface device\n", "by the card\n", "by the interface device and card\n"] - text.append(t[v]) + text.append(" - Logical channel number assignment: " + t[v]) text.append(" - Maximum number of logical channels: %d\n" % (cc & 7)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |