I have this launch_time:
2015-01-15 10:31:54+00:00
I get current_time
current_time = datetime.datetime.now(launch_time.tzinfo)
I want both of times are same so I used tzinfo. So, the value of current_time is
2015-01-16 10:55:50.200571+00:00
I take the running time with this:
running_time = (current_time - launch_time).seconds/60
The value return only 23 minutes. It should be one day + 23 minutes = 1463 minutes
Can someone help me. Thanks