Skip to content

Commit

Permalink
fix .pretty_zip_size()
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonje committed Aug 7, 2017
1 parent 0714561 commit 8d26b01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calaccess_processed/models/tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def pretty_zip_size(self):
"""
if not self.zip_size:
return None
return sizeformat(self.clean_zip_size)
return sizeformat(self.zip_size)
pretty_zip_size.short_description = 'processed zip size'
pretty_zip_size.admin_order_field = 'processed zip size'

Expand Down

0 comments on commit 8d26b01

Please sign in to comment.