Skip to content

Commit

Permalink
fix (
Browse files Browse the repository at this point in the history
  • Loading branch information
5hojib committed Jan 2, 2025
1 parent 36fcc9d commit 09fcd16
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bot/helper/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ async def decompress_zst(self, dl_path, is_dir=False):
stderr = (
(await self.subproc.stderr.read())
.decode()
.strip()
.strip())
except Exception:
stderr = "Unable to decode the error!"
LOGGER.error(
Expand All @@ -610,7 +610,7 @@ async def decompress_zst(self, dl_path, is_dir=False):
stderr = (
(await self.subproc.stderr.read())
.decode()
.strip()
.strip())
except Exception:
stderr = "Unable to decode the error!"
LOGGER.error(
Expand Down Expand Up @@ -684,7 +684,7 @@ async def proceed_extract(self, dl_path, gid):
stderr = (
(await self.subproc.stderr.read())
.decode()
.strip()
.strip())
except Exception:
stderr = "Unable to decode the error!"
LOGGER.error(
Expand Down Expand Up @@ -839,7 +839,7 @@ async def proceed_compress(self, dl_path, gid, o_files, ft_delete):
stderr = (
(await self.subproc.stderr.read())
.decode()
.strip()
.strip())
except Exception:
stderr = "Unable to decode the error!"
LOGGER.error(f"{stderr}. Unable to zip this path: {dl_path}")
Expand Down

0 comments on commit 09fcd16

Please sign in to comment.