Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
qqzero0 authored Nov 14, 2023
1 parent 824094d commit 34ea531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def main() -> None:
def encontrar_diretorios_discord(diretorio_main: str) -> List[str]:
diretorios_discord = []
for diretorio in os.listdir(diretorio_main):
if os.path.isdir(os.path.join(diretorio_main, diretorio)) and 'Discord' in diretorio:
if os.path.isdir(os.path.join(diretorio_main, diretorio)) and 'discord' in diretorio.lower():
diretorios_discord.append(diretorio)
return diretorios_discord

Expand Down

0 comments on commit 34ea531

Please sign in to comment.