Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
fix print statements appearing for filelocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-WinnfieldX committed Feb 27, 2024
1 parent eb5776e commit 0fc889a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cyberdrop_dl/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.1.73"
__version__ = "5.1.74"
3 changes: 2 additions & 1 deletion cyberdrop_dl/utils/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ async def log(message: [str, Exception], level: int) -> None:

async def log_debug(message: [str, Exception], level: int) -> None:
"""Simple logging function"""
logger_debug.log(level, message)
if os.getenv("PYCHARM_HOSTED") is not None:
logger_debug.log(level, message)


async def log_with_color(message: str, style: str, level: int) -> None:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cyberdrop-dl"
version = "5.1.73"
version = "5.1.74"
description = "Bulk downloader for multiple file hosts"
authors = ["Jules Winnfield <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 0fc889a

Please sign in to comment.