Skip to content

Commit

Permalink
set stdout to stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
rasbt committed Feb 3, 2014
1 parent c70a2c5 commit 5bf2959
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file added pyprind/.progbar.py.swo
Binary file not shown.
2 changes: 1 addition & 1 deletion pyprind/prog_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class Prog():
def __init__(self, iterations, track_time, stream):
self.cnt = 0
self.max_iter = float(iterations) # accommodation for Python 2.x users
self.max_iter = iterations
self.track = track_time
self.time = [time.clock(), 0]
self.stream = stream
Expand Down

0 comments on commit 5bf2959

Please sign in to comment.