From 8b2c6226f6b2728d106dc5d521b907e2c795e531 Mon Sep 17 00:00:00 2001 From: jack1142 <6032823+jack1142@users.noreply.github.com> Date: Wed, 28 Oct 2020 11:54:16 +0100 Subject: [PATCH] Add metadata file to `redbot --debuginfo` (#4557) --- redbot/__main__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/redbot/__main__.py b/redbot/__main__.py index e09a4c2c3..f79607ca5 100644 --- a/redbot/__main__.py +++ b/redbot/__main__.py @@ -97,6 +97,7 @@ def debug_info(): + "OS version: {}\n".format(osver) + "System arch: {}\n".format(platform.machine()) + "User: {}\n".format(user_who_ran) + + "Metadata file: {}\n".format(data_manager.config_file) ) print(info) sys.exit(0)