From 074ff87216a8676228afd4b557e253f55b6eac7d Mon Sep 17 00:00:00 2001 From: sgoudham Date: Thu, 27 Aug 2020 01:42:01 +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 a11d5b12..facc319b 100644 --- a/cogs/info.py +++ b/cogs/info.py @@ -121,6 +121,7 @@ async def line_count(): # Ignoring the venv directory if not name.endswith(".py") or ENV in file_dir: continue + print(name) file_amount += 1 with open(file_dir, "r", encoding="utf-8") as file: for line in file: