I set a date to midnight like this:
user_tz = timezone('America/Los_Angeles')
day_start = user_tz.localize(entered_at.replace(hour=00, minute=00))
I print the date and it looks like so:
start date: 2014-08-21 00:00:00-07:00
What is the -7:00 at the end and how do I make it go away?