baicunko / scanyourpdf

Repository for the Scan Your Pdf community
MIT License
614 stars 46 forks source link

Fix a warning (and possible undesirable behaviour) in `cleanfiles` management command #5

Closed lewiscollard closed 4 years ago

lewiscollard commented 4 years ago

Previously, manage.py cleanfiles would give a warning about comparing naive datetimes with timezone-aware ones. It's actually possible that this would behave in unpredictable depending on local configuration and current timezone, but mostly warnings are annoying enough that it's always best to use django.utils.timezone.now() any time you're in Django-land.

Bonus changes: regroup & tidy up imports (I'm awful, I know) and fix some inconsistent indentation.

baicunko commented 4 years ago

Thanks!