Skip to content
This repository has been archived by the owner on Feb 4, 2020. It is now read-only.

Commit

Permalink
Merge pull request #100 from chill17/master
Browse files Browse the repository at this point in the history
Fixed typo of self.file_hand being set to None rather than self.file_handle
  • Loading branch information
edsu authored Mar 22, 2017
2 parents ab5fa91 + d53c9bd commit 745581b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymarc/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __init__(self, marc_target, to_unicode=True, force_utf8=False,
def close(self):
if self.file_handle:
self.file_handle.close()
self.file_hand = None
self.file_handle = None

def __next__(self):
"""
Expand Down

0 comments on commit 745581b

Please sign in to comment.