I am a bit confused between the following:
import datetime
import pytz
str(datetime.datetime.now(pytz.timezone('US/Pacific')))
str(datetime.datetime.now().replace(tzinfo=pytz.timezone('US/Pacific')))
In the first case I get: '2018-08-10 14:21:04.129204-07:00' and in the second case I get '2018-08-10 14:21:17.856903-07:53' I am a bit confused on why the dont return the same time offsets?