[pywin32-checkins] pywin32/Pythonwin/pywin/Demos/app basictimerapp.py, 1.4, 1.5
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-11-27 03:53:37
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/Demos/app In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv31031/pythonwin/pywin/Demos/app Modified Files: basictimerapp.py Log Message: Replace backticks with explicit repr() calls. Index: basictimerapp.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/Demos/app/basictimerapp.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** basictimerapp.py 9 Aug 2008 16:46:40 -0000 1.4 --- basictimerapp.py 27 Nov 2008 03:53:25 -0000 1.5 *************** *** 113,117 **** except: t, v, tb = sys.exc_info() ! str = "Failed: %s: %s" % (t, `v`) print str self.oldErr.write(str) --- 113,117 ---- except: t, v, tb = sys.exc_info() ! str = "Failed: %s: %s" % (t, repr(v)) print str self.oldErr.write(str) |