Bug fixes.
This commit is contained in:
parent
50e4083015
commit
3bb290cd0e
|
@ -65,6 +65,7 @@ def inventory(soup):
|
||||||
print('Total use of this storage space: {}'.format(quantity_total))
|
print('Total use of this storage space: {}'.format(quantity_total))
|
||||||
print('-----')
|
print('-----')
|
||||||
|
|
||||||
|
|
||||||
print('Item total summary:')
|
print('Item total summary:')
|
||||||
for item in item_tracking.items():
|
for item in item_tracking.items():
|
||||||
item_code = item[0]
|
item_code = item[0]
|
||||||
|
@ -73,6 +74,7 @@ def inventory(soup):
|
||||||
print('{:04} - {} - {}'.format(item_code, item_name, item_quantity))
|
print('{:04} - {} - {}'.format(item_code, item_name, item_quantity))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
filename = sys.argv[1]
|
filename = sys.argv[1]
|
||||||
print(filename)
|
print(filename)
|
||||||
|
|
Loading…
Reference in New Issue