From: <lu...@us...> - 2010-06-09 15:08:04
|
Revision: 468 http://pyscard.svn.sourceforge.net/pyscard/?rev=468&view=rev Author: ludov Date: 2010-06-09 15:07:58 +0000 (Wed, 09 Jun 2010) Log Message: ----------- make pep8 happy Modified Paths: -------------- trunk/pyscard/src/smartcard/pcsc/PCSCReaderGroups.py Modified: trunk/pyscard/src/smartcard/pcsc/PCSCReaderGroups.py =================================================================== --- trunk/pyscard/src/smartcard/pcsc/PCSCReaderGroups.py 2010-06-09 15:07:00 UTC (rev 467) +++ trunk/pyscard/src/smartcard/pcsc/PCSCReaderGroups.py 2010-06-09 15:07:58 UTC (rev 468) @@ -85,7 +85,7 @@ raise error, 'Failed to establish context: ' + SCardGetErrorMessage(hresult) try: hresult = SCardForgetReaderGroup(hcontext, group) - if hresult!=0: + if hresult != 0: raise error, 'Unable to forget reader group: ' + SCardGetErrorMessage(hresult) finally: hresult = SCardReleaseContext(hcontext) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |