[Python-checkins] r45698 - python/trunk/Lib/trace.py

tim.peters python-checkins at python.org
Tue Apr 25 00:45:14 CEST 2006


Author: tim.peters
Date: Tue Apr 25 00:45:13 2006
New Revision: 45698

Modified:
   python/trunk/Lib/trace.py
Log:
Whitespace normalization.


Modified: python/trunk/Lib/trace.py
==============================================================================
--- python/trunk/Lib/trace.py	(original)
+++ python/trunk/Lib/trace.py	Tue Apr 25 00:45:13 2006
@@ -40,7 +40,7 @@
   # create a Trace object, telling it what to ignore, and whether to
   # do tracing or line-counting or both.
   tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,], trace=0,
-  		    count=1)
+                    count=1)
   # run the new command using the given tracer
   tracer.run('main()')
   # make a report, placing output in /tmp


More information about the Python-checkins mailing list