Skip to content

Commit

Permalink
1.13.3 -> Fix: Correct exception handling #33
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanBindez committed Jan 31, 2024
1 parent c59dedc commit 83258f7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion push.Makeline
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
git add .
git commit -m 'Release 1.13.2 -> Fixed AttributeError when trying to get shorts and live #32'
git commit -m '1.13.3 -> Fix: Correct exception handling #33'
git push -u origin main
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pytubefix"
version = "1.13.2"
version = "1.13.3"
authors = [
{ name="Juan Bindez", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion pytubefix/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def title(self) -> str:
raise exceptions.PytubeFixError(
(
f'Exception while accessing title of {self.watch_url}. '
'Please file a bug report at https://github.com/pytube/pytube'
'Please file a bug report at https://github.com/JuanBindez/pytubefix'
)
)
# print(self.vid_info['videoDetails'])
Expand Down
2 changes: 1 addition & 1 deletion pytubefix/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.13.2"
__version__ = "1.13.3"

if __name__ == "__main__":
print(__version__)

0 comments on commit 83258f7

Please sign in to comment.