Skip to content

Commit

Permalink
Merge pull request #859 from djv/master
Browse files Browse the repository at this point in the history
Fix for issue #800
  • Loading branch information
minrk committed Oct 11, 2011
2 parents 52688c2 + ef03f85 commit 3cd2110
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IPython/core/magic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1704,7 +1704,7 @@ def magic_run(self, parameter_s ='',runner=None,
t_sys = t1[1]-t0[1]
print "\nIPython CPU timings (estimated):"
print "Total runs performed:",nruns
print " Times : %10.2f %10.2f" % ('Total','Per run')
print " Times : %10s %10s" % ('Total','Per run')
print " User : %10.2f s, %10.2f s." % (t_usr,t_usr/nruns)
print " System : %10.2f s, %10.2f s." % (t_sys,t_sys/nruns)
twall1 = time.time()
Expand Down

0 comments on commit 3cd2110

Please sign in to comment.