From 261179d5ea97d4bec9345aa3d759878c35fefdef Mon Sep 17 00:00:00 2001 From: sgoudham Date: Thu, 27 Aug 2020 01:43:22 +0100 Subject: [PATCH] Trying print statements to find out what files it's getting --- cogs/info.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cogs/info.py b/cogs/info.py index facc319b..6ecc6069 100644 --- a/cogs/info.py +++ b/cogs/info.py @@ -116,6 +116,7 @@ async def line_count(): for path, _, files in os.walk("."): if ".local" in path: continue + print(files) for name in files: file_dir = str(pathlib.PurePath(path, name)) # Ignoring the venv directory