FIXED THE SCRIPT COPY/PASTE below:
HI all -
Maybe you can help me out.
I've been getting this error for ages and it is making me nuts:

Here's the script:
<SPAN class="comment token"># Move points based up current lat/lon</SPAN>
<SPAN class="comment token">#grab stuff you need</SPAN>
<SPAN class="keyword token">import</SPAN> arcpy<SPAN class="punctuation token">,</SPAN> os
<SPAN class="comment token"># Set variables</SPAN>
folderName <SPAN class="operator token">=</SPAN> r<SPAN class="string token">"S:\AGR\AGR-Shared\AGR-GIS\AGR_Data"</SPAN>
fileName <SPAN class="operator token">=</SPAN> <SPAN class="string token">"Connection to cloud.agriculture.vermont.gov.sde"</SPAN>
filepath <SPAN class="operator token">=</SPAN> r<SPAN class="string token">'S:\AGR\AGR-Shared\AGR-GIS\AGR_Data\Connection to cloud.agriculture.vermont.gov.sde'</SPAN>
serverName <SPAN class="operator token">=</SPAN> <SPAN class="string token">"agr-ofwq2012\AGRGIS"</SPAN>
serviceName <SPAN class="operator token">=</SPAN> <SPAN class="string token">"5151"</SPAN>
databaseName <SPAN class="operator token">=</SPAN> <SPAN class="string token">"AGRGISDATA"</SPAN>
authType <SPAN class="operator token">=</SPAN> <SPAN class="string token">"DATABASE_AUTH"</SPAN>
username <SPAN class="operator token">=</SPAN> <SPAN class="string token">"**********"</SPAN>
password <SPAN class="operator token">=</SPAN> <SPAN class="string token">"**********"</SPAN>
saveUserInfo <SPAN class="operator token">=</SPAN> <SPAN class="string token">"SAVE_USERNAME"</SPAN>
versionName <SPAN class="operator token">=</SPAN> <SPAN class="string token">"SDE.DEFAULT"</SPAN>
saveVersionInfo <SPAN class="operator token">=</SPAN> <SPAN class="string token">"SAVE_VERSION"</SPAN>
<SPAN class="comment token"># Process: Use the CreateArcSDEConnectionFile function</SPAN>
arcpy<SPAN class="punctuation token">.</SPAN>CreateDatabaseConnection_management<SPAN class="punctuation token">(</SPAN>folderName<SPAN class="punctuation token">,</SPAN>
fileName<SPAN class="punctuation token">,</SPAN>
<SPAN class="string token">"SQL_SERVER"</SPAN><SPAN class="punctuation token">,</SPAN>
serverName<SPAN class="punctuation token">,</SPAN>
authType<SPAN class="punctuation token">,</SPAN>
username<SPAN class="punctuation token">,</SPAN>
password<SPAN class="punctuation token">,</SPAN>
saveUserInfo<SPAN class="punctuation token">,</SPAN>
databaseName<SPAN class="punctuation token">)</SPAN>
fc <SPAN class="operator token">=</SPAN> <SPAN class="string token">"AGRGISDATA.DBO.ApiariesWGS"</SPAN>
<SPAN class="keyword token">print</SPAN> fc
fc_path <SPAN class="operator token">=</SPAN> os<SPAN class="punctuation token">.</SPAN>path<SPAN class="punctuation token">.</SPAN>join<SPAN class="punctuation token">(</SPAN>filepath<SPAN class="punctuation token">,</SPAN> fc<SPAN class="punctuation token">)</SPAN>
<SPAN class="keyword token">print</SPAN> fc_path
fields <SPAN class="operator token">=</SPAN> <SPAN class="punctuation token">[</SPAN><SPAN class="string token">'Longtitude'</SPAN><SPAN class="punctuation token">,</SPAN><SPAN class="string token">'Latitude'</SPAN><SPAN class="punctuation token">,</SPAN><SPAN class="string token">'SHAPE@XY'</SPAN><SPAN class="punctuation token">]</SPAN>
<SPAN class="keyword token">print</SPAN> fields
arcpy<SPAN class="punctuation token">.</SPAN>env<SPAN class="punctuation token">.</SPAN>workspace <SPAN class="operator token">=</SPAN> filepath
workspace <SPAN class="operator token">=</SPAN> os<SPAN class="punctuation token">.</SPAN>path<SPAN class="punctuation token">.</SPAN>dirname<SPAN class="punctuation token">(</SPAN>filepath<SPAN class="punctuation token">)</SPAN>
<SPAN class="keyword token">print</SPAN> workspace
editor <SPAN class="operator token">=</SPAN> arcpy<SPAN class="punctuation token">.</SPAN>da<SPAN class="punctuation token">.</SPAN>Editor<SPAN class="punctuation token">(</SPAN>workspace<SPAN class="punctuation token">)</SPAN>
<SPAN class="keyword token">print</SPAN> editor
editor<SPAN class="punctuation token">.</SPAN>startEditing<SPAN class="punctuation token">(</SPAN><SPAN class="token boolean">False</SPAN><SPAN class="punctuation token">,</SPAN> <SPAN class="token boolean">False</SPAN><SPAN class="punctuation token">)</SPAN>
editor<SPAN class="punctuation token">.</SPAN>startOperation<SPAN class="punctuation token">(</SPAN><SPAN class="punctuation token">)</SPAN>
<SPAN class="comment token">#create curser on fc</SPAN>
<SPAN class="keyword token">try</SPAN><SPAN class="punctuation token">:</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>fc<SPAN class="punctuation token">,</SPAN>fields<SPAN class="punctuation token">)</SPAN> <SPAN class="keyword token">as</SPAN> cursor<SPAN class="punctuation token">:</SPAN>
<SPAN class="keyword token">for</SPAN> row <SPAN class="keyword token">in</SPAN> cursor<SPAN class="punctuation token">:</SPAN>
x <SPAN class="operator token">=</SPAN> row<SPAN class="punctuation token">[</SPAN><SPAN class="number token">0</SPAN><SPAN class="punctuation token">]</SPAN>
y <SPAN class="operator token">=</SPAN> row<SPAN class="punctuation token">[</SPAN><SPAN class="number token">1</SPAN><SPAN class="punctuation token">]</SPAN>
xy <SPAN class="operator token">=</SPAN> <SPAN class="punctuation token">(</SPAN>x<SPAN class="punctuation token">,</SPAN>y<SPAN class="punctuation token">)</SPAN>
pnt <SPAN class="operator token">=</SPAN> xy
row<SPAN class="punctuation token">[</SPAN><SPAN class="number token">2</SPAN><SPAN class="punctuation token">]</SPAN> <SPAN class="operator token">=</SPAN> pnt
cursor<SPAN class="punctuation token">.</SPAN>updateRow<SPAN class="punctuation token">(</SPAN>row<SPAN class="punctuation token">)</SPAN>
<SPAN class="keyword token">finally</SPAN><SPAN class="punctuation token">:</SPAN>
editor<SPAN class="punctuation token">.</SPAN>stopEditing<SPAN class="punctuation token">(</SPAN><SPAN class="token boolean">True</SPAN><SPAN class="punctuation token">)</SPAN>
<SPAN class="keyword token">del</SPAN> editor
<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></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><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></SPAN><SPAN></SPAN></SPAN>