From f7f3f0d53c2cc3c0e7fd3f23fa71fc13650a67ad Mon Sep 17 00:00:00 2001 From: 2Shirt <1923621+2Shirt@users.noreply.github.com> Date: Wed, 17 Jan 2018 17:22:45 -0700 Subject: [PATCH] Updated info.py Should fix #10 --- .bin/Scripts/functions/info.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.bin/Scripts/functions/info.py b/.bin/Scripts/functions/info.py index 3c882333..066ebbd7 100644 --- a/.bin/Scripts/functions/info.py +++ b/.bin/Scripts/functions/info.py @@ -460,8 +460,8 @@ def show_user_data_summary(indent=8, width=32): indent = ' ' * indent, width = width, folder = folder, - size = folders[folder]['Size'], - path = folders[folder]['Path'])) + size = folders[folder].get('Size', 'Unknown'), + path = folders[folder].get('Path', 'Unknown'))) if __name__ == '__main__': print("This file is not meant to be called directly.")