Skip to content

Commit

Permalink
version bump; default extra in open_iter
Browse files Browse the repository at this point in the history
  • Loading branch information
mbreese committed Mar 5, 2013
1 parent 8d76669 commit 73e007e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eta/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
def eta_open_iter(fname, callback=None):
f = open(fname) # not using with to support 2.4
_eta = ETA(os.stat(fname).st_size, fileobj=f)
extra = None
extra = ''
for line in f:
if callback:
extra = callback()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from distutils.core import setup

setup(name='eta',
version='0.9.2',
version='0.9.3',
description='ETA Progress bar for command-line utilities',
author='Marcus Breese',
author_email='[email protected]',
Expand Down

0 comments on commit 73e007e

Please sign in to comment.