From: <lu...@us...> - 2009-12-18 17:14:37
|
Revision: 365 http://pyscard.svn.sourceforge.net/pyscard/?rev=365&view=rev Author: ludov Date: 2009-12-18 17:14:30 +0000 (Fri, 18 Dec 2009) Log Message: ----------- improve display of "Possibly identified card" list Modified Paths: -------------- trunk/contrib/parseATR/parseATR.py Modified: trunk/contrib/parseATR/parseATR.py =================================================================== --- trunk/contrib/parseATR/parseATR.py 2009-12-15 09:12:05 UTC (rev 364) +++ trunk/contrib/parseATR/parseATR.py 2009-12-18 17:14:30 UTC (rev 365) @@ -712,6 +712,6 @@ card = match_atr(ATR) if card: - print "Possibly identified card:", " ".join(card) + print "Possibly identified card:", "\n\t".join(card) else: print "Unknown card" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |