Skip to content

Commit

Permalink
Fix undeclared var in Bio._py3k
Browse files Browse the repository at this point in the history
  • Loading branch information
bow authored and peterjc committed Dec 18, 2012
1 parent 36f6c81 commit d74b89a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bio/_py3k/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def seek(self, pos):
return self._handle.seek(pos)

def tell(self):
return self._handle.tell(pos)
return self._handle.tell()

return EvilHandleHack(handle)

Expand Down

0 comments on commit d74b89a

Please sign in to comment.