Skip to content

Commit

Permalink
Minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SenZmaKi committed Feb 9, 2024
1 parent ac118f7 commit 7fb6e99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion senpwai/utils/class_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def episode_title(self, lacked_eps_idx: int) -> str:

def validate_anime_folder_path(self) -> None:
if not os.path.isdir(self.anime_folder_path):
os.mkdir(self.anime_folder_path)
os.makedirs(self.anime_folder_path)

def get_anime_folder_path(self) -> str:
def try_path(title: str) -> str | None:
Expand Down

0 comments on commit 7fb6e99

Please sign in to comment.