Hello,
I Have 3 dates fields as the image below:

What I am trying to do is to populate 'Created' and 'Updated' fields with values from 'Designdate' field and add time to this field.
The time value will be static and doesn't change ( 12:01:00 AM) the result should be something like this "1/1/2015 12:01:00 AM".
Till now I couldn't figure out how to do this using python , what I have so far is the below script but this will populate the fields with dates only without the time. Any Ideas?.
<SPAN class="keyword token">import</SPAN> datetime
<SPAN class="keyword token">import</SPAN> arcpy
targetfc<SPAN class="operator token">=</SPAN>r<SPAN class="string token">"D:\d2\New File Geodatabase.gdb\gf"</SPAN>
updateDateFields<SPAN class="operator token">=</SPAN><SPAN class="punctuation token">[</SPAN><SPAN class="string token">'created'</SPAN><SPAN class="punctuation token">,</SPAN><SPAN class="string token">'updated'</SPAN><SPAN class="punctuation token">,</SPAN><SPAN class="string token">'DesignDate'</SPAN><SPAN class="punctuation token">]</SPAN>
time<SPAN class="operator token">=</SPAN><SPAN class="string token">'12:01:00 AM'</SPAN>
<SPAN class="keyword token">with</SPAN> arcpy<SPAN class="punctuation token">.</SPAN>da<SPAN class="punctuation token">.</SPAN>UpdateCursor<SPAN class="punctuation token">(</SPAN>targetfc<SPAN class="punctuation token">,</SPAN> updateDateFields<SPAN class="punctuation token">)</SPAN> <SPAN class="keyword token">as</SPAN> userUpdateCursor2<SPAN class="punctuation token">:</SPAN>
<SPAN class="keyword token">for</SPAN> row <SPAN class="keyword token">in</SPAN> userUpdateCursor2<SPAN class="punctuation token">:</SPAN>
row<SPAN class="punctuation token">[</SPAN><SPAN class="number token">0</SPAN><SPAN class="punctuation token">]</SPAN><SPAN class="operator token">=</SPAN>row<SPAN class="punctuation token">[</SPAN><SPAN class="number token">2</SPAN><SPAN class="punctuation token">]</SPAN>
row<SPAN class="punctuation token">[</SPAN><SPAN class="number token">1</SPAN><SPAN class="punctuation token">]</SPAN><SPAN class="operator token">=</SPAN>row<SPAN class="punctuation token">[</SPAN><SPAN class="number token">2</SPAN><SPAN class="punctuation token">]</SPAN>
userUpdateCursor2<SPAN class="punctuation token">.</SPAN>updateRow<SPAN class="punctuation token">(</SPAN>row<SPAN class="punctuation token">)</SPAN>
<SPAN class="keyword token">del</SPAN> userUpdateCursor2<SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>
Thank you,