Updated info.py

Should fix #10
This commit is contained in:
2Shirt 2018-01-17 17:22:45 -07:00 committed by GitHub
parent 8f4ec41359
commit f7f3f0d53c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -460,8 +460,8 @@ def show_user_data_summary(indent=8, width=32):
indent = ' ' * indent, indent = ' ' * indent,
width = width, width = width,
folder = folder, folder = folder,
size = folders[folder]['Size'], size = folders[folder].get('Size', 'Unknown'),
path = folders[folder]['Path'])) path = folders[folder].get('Path', 'Unknown')))
if __name__ == '__main__': if __name__ == '__main__':
print("This file is not meant to be called directly.") print("This file is not meant to be called directly.")