Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
gaulinmp committed Jan 14, 2025
1 parent 08f3e88 commit f3c8cbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyedgar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"""

__title__ = 'pyedgar'
__version__ = '0.1.11'
__version__ = '0.1.12'
__version_info__ = tuple(int(i) for i in __version__.split("."))
__author__ = 'Mac Gaulin'
__license__ = 'MIT'
Expand Down
2 changes: 1 addition & 1 deletion pyedgar/utilities/edgarcache.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def _handle_nc(self, file_or_str):
try:
txt = file_or_str.read().replace(b"\r", b"\n")
except AttributeError:
txt = file_or_str
txt = file_or_str.replace("\r", "\n")

if not txt:
raise InputTypeError("No text of file object found")
Expand Down

0 comments on commit f3c8cbc

Please sign in to comment.