<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Error 999999 in arcpy after ArcGIS Pro Crashes in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/error-999999-in-arcpy-after-arcgis-pro-crashes/m-p/346861#M27201</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Give the Syntax Highlighter a try to format your code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/475819_SyntaxHighlighter.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Dec 2019 19:18:10 GMT</pubDate>
    <dc:creator>JoeBorgione</dc:creator>
    <dc:date>2019-12-10T19:18:10Z</dc:date>
    <item>
      <title>Error 999999 in arcpy after ArcGIS Pro Crashes</title>
      <link>https://community.esri.com/t5/python-questions/error-999999-in-arcpy-after-arcgis-pro-crashes/m-p/346860#M27200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm having a bit of a strange issue; the code below worked just fine yesterday but when I re-ran it and added a backlink raster to the output of the CostDistance tool on line&amp;nbsp;71 it caused ArcGIS Pro to crash (there was no open instance of ArcGIS Pro at the time, I can only assume it was opened for background processing or something). I don't really need the backlink so no problem I thought, so I just restarted my IDE (Spyder) and when I tried to run it again it gave me an&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;ExecuteError: ERROR 999999: Something unexpected caused the tool to fail. Contact Esri Technical Support (&lt;A href="http://esriurl.com/support" target="_blank"&gt;http://esriurl.com/support&lt;/A&gt;) to Report a Bug, and refer to the error help for potential solutions or workarounds.&lt;BR /&gt;Failed to create raster dataset&lt;BR /&gt;Failed to execute (Fill).&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;on line 28&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;elev_filled = Fill(inSurfaceRaster)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;There have been a few previous cases where anaconda or python froze during some operation and it resulted an Error 999999 when I restarted, but it was always easily fixed by deleting the contents of C:\users\{myname}\AppData\local\Temp; this time however the problem has persisted. I've tried running the code on the python window of ArcGIS Pro, in an ArcMap 10.6 arcpy environment, and in Jupyter Notebooks and each one gives the Error 999999; however, it works fine when I use the&amp;nbsp;Fill tool in ArcGIS Pro Desktop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone have any idea what's up? I'm guessing the unexpected exit of ArcGIS Pro left some debris on my system that would normally have been cleaned up in a normal exit but outside of the temp folder I'm not sure where to look. I've also tried rebooting the system (after deleting the temp folders) and running both spyder and ArcGIS Pro as an administrator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Update: I tested it in the python window in ArcMap 10.6 on my computer and still got the Error 999999; I tried it out in the python window of ArcMap 10.6 on a different computer and it *did* work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;It strikes me that I don't know how to add line numbers to this code block and the spaces between lines have disappeared, so hopefully it's not too much trouble for you all.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;# -*- coding: utf-8 -*-&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;#Import packages, check out extensions&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy
&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcpy &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; env
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;CheckOutExtension&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Spatial"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;sa &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; geomorph_routines_module

&lt;SPAN class="comment token"&gt;# Set environment settings&lt;/SPAN&gt;
env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'D:\hydro_RI\data'&lt;/SPAN&gt;
env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;overwriteOutput &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# Set local variables&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;#inSurfaceRaster = env.workspace + '\\' + 'grdn42w072_13'&lt;/SPAN&gt;
inSurfaceRaster &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'\\'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'rhodeIslandDEM.tif'&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;#outDropRaster = "D:\\hydro_RI\\data\\dropraster"&lt;/SPAN&gt;
outBacklinkRaster &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"D:\\hydro_RI\\data\\backlink"&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;#sample_points = &lt;/SPAN&gt;
stream_threshold &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;50000&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;#declares units of the map; need to add some code to figure this out&lt;/SPAN&gt;
inZUnits &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Meters'&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;#Set raster calculation details&lt;/SPAN&gt;
env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;extent &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; inSurfaceRaster
env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;cellSize &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;10&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# Fill sinks in the raster &lt;/SPAN&gt;
elev_filled &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; Fill&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;inSurfaceRaster&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;#elev_filled = Fill(r"D:\hydro_RI\data\rhodeIslandDEM.tif")&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;#Calculate flow direction&lt;/SPAN&gt;
outFlowDirection &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; FlowDirection&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;elev_filled&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"FORCE"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; outDropRaster&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'D8'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;#Calculate flow accumulation&lt;/SPAN&gt;
flow_accum &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; FlowAccumulation&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;outFlowDirection&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;#Calculate watershed areas feeding into locations of sample points;&lt;/SPAN&gt;
streamThreshold &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; SetNull&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;flow_accum &lt;SPAN class="operator token"&gt;&amp;lt;=&lt;/SPAN&gt; stream_threshold&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;flow_accum&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
strahler_threshold &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; StreamOrder&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;streamThreshold&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; outFlowDirection&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'STRAHLER'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
strahler_link &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; StreamLink&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;strahler_threshold&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; outFlowDirection&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;#Clip relevent watersheds to reduce processing time of indices&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;#clip_feature = arcpy.RasterToPolygon_conversion (polluted, env.workspace + '\\' + 'clipFeat.shp' , "NO_SIMPLIFY")&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;#wshd_clip = arcpy.Clip_management(elev_filled, '#', env.workspace + '\\' + 'wshd_clip.tif',clip_feature, "0", "ClippingGeometry")&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;#Basis for CTI&lt;/SPAN&gt;
clippedFootprint &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; geomorph_routines_module&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;checkExt&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;elev_filled&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
zFactor &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; geomorph_routines_module&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;getZFactor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;clippedFootprint&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;inZUnits&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
slope &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; Slope&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;clippedFootprint&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"DEGREE"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;zFactor&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
radSlope &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; Divide&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Times&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;slope&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1.570796&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;90&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
tan_slp &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; Con&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;radSlope &lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; Tan&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;radSlope&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0.001&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# Getting info on raster&lt;/SPAN&gt;
dscRaster &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Describe&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;clippedFootprint&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
inSpRef &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; dscRaster&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;spatialReference
spRefType &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; inSpRef&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;type
cellSize &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; dscRaster&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;meanCellHeight
&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; spRefType &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Geographic"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
 cellSize &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; cellSize&lt;SPAN class="operator token"&gt;/&lt;/SPAN&gt;zFactor

&lt;SPAN class="comment token"&gt;#Calculate flow direction and flow accumulation of filled rastter&lt;/SPAN&gt;
clippedFlowDirection &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; FlowDirection&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;clippedFootprint&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
clippedFlowAcc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; FlowAccumulation&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;clippedFlowDirection&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;#CTI&lt;/SPAN&gt;
corr_flowAcc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; Times&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Plus&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;clippedFlowAcc&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;cellSize&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
twiRaster &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; Ln&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Divide&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;corr_flowAcc&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;tan_slp&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
twiRaster&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;save&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'\\'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'twiRI'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
 
&lt;SPAN class="comment token"&gt;#Cartographic depth to water index (DTW)&lt;/SPAN&gt;
dtwRaster &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; CostDistance &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;strahler_threshold&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; tan_slp&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;''&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;''&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
dtwRaster&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;save&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'\\'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'dtwRI'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:20:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-999999-in-arcpy-after-arcgis-pro-crashes/m-p/346860#M27200</guid>
      <dc:creator>EliasStallard-Olivera1</dc:creator>
      <dc:date>2021-12-11T16:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: Error 999999 in arcpy after ArcGIS Pro Crashes</title>
      <link>https://community.esri.com/t5/python-questions/error-999999-in-arcpy-after-arcgis-pro-crashes/m-p/346861#M27201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Give the Syntax Highlighter a try to format your code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/475819_SyntaxHighlighter.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Dec 2019 19:18:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-999999-in-arcpy-after-arcgis-pro-crashes/m-p/346861#M27201</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2019-12-10T19:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Error 999999 in arcpy after ArcGIS Pro Crashes</title>
      <link>https://community.esri.com/t5/python-questions/error-999999-in-arcpy-after-arcgis-pro-crashes/m-p/346862#M27202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Done, thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Dec 2019 19:22:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/error-999999-in-arcpy-after-arcgis-pro-crashes/m-p/346862#M27202</guid>
      <dc:creator>EliasStallard-Olivera1</dc:creator>
      <dc:date>2019-12-10T19:22:08Z</dc:date>
    </item>
  </channel>
</rss>

