parent
8f4ec41359
commit
f7f3f0d53c
1 changed files with 2 additions and 2 deletions
|
|
@ -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.")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue