<?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: AddField Failed to Execute??? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93977#M7329</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Might this line of code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.CalculateField_management(inFeatures, 'COUNT', str(!F2011_TRAF!) + str(!FLAG!), 'PYTHON')&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Need to be something like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.CalculateField_management(inFeatures, 'COUNT', 'str(!F2011_TRAF!) + str(!FLAG!)', 'PYTHON')&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I put quote around the calculated expression.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 May 2013 14:31:07 GMT</pubDate>
    <dc:creator>MichaelVolz</dc:creator>
    <dc:date>2013-05-01T14:31:07Z</dc:date>
    <item>
      <title>AddField Failed to Execute???</title>
      <link>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93972#M7324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am trying to join 2 fields in one layer which is a shapefile and join 2 fields in another layer which is a gdb. I think I have the coding right but it is not wanting to add my join field in my shapefile. It gives me a failed to execute AddField on the first one which is the shapefile. Any hints as to what might be wrong??&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;
import arcpy, traceback
from arcpy import env

mxd = arcpy.mapping.MapDocument("CURRENT")

# Join Fields
fc = 'K:\TASS\4_MAPPING_DATA_SUPPORT\Traffic_Mapping\Traffic_Count_Data\2011_Counts\2011_Annual_Stations\Annual_Stations_2011.shp'
env.workspace = 'K:\TASS\4_MAPPING_DATA_SUPPORT\Traffic_Mapping\Traffic_Count_Data\District_Labels_Folder\Abilene_Labels.gdb'

fields_to_join = ['!F2011_TRAF!', '!FLAG!']
arcpy.AddField_management(fc, 'COUNT', 'TEXT')
arcpy.CalculateField_management(fc, 'COUNT', ''.join(fields_to_join), 'PYTHON')

fields_to_join = ['!TextString!', '!TFLAG!']
arcpy.AddField_management(inFeatures, 'TRAFFIC', 'TEXT')
arcpy.CalculateField-management(inFeatures, 'TRAFFIC', ''.join(fields_to_join), 'PYTHON')

lstLayers = arcpy.mapping.ListLayers(mxd)

&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Apr 2013 19:59:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93972#M7324</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2013-04-30T19:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: AddField Failed to Execute???</title>
      <link>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93973#M7325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Some more information. It says it doesn't like my shapefile which is defined at fc. Is there something I need to do to the shapefile for it to add a field??&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Apr 2013 20:06:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93973#M7325</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2013-04-30T20:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: AddField Failed to Execute???</title>
      <link>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93974#M7326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Do you mean join (as in a tabular join) or string concatenattion (as in join the text strings 'A' and 'B' so that the new value is 'AB')?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think you mean the latter, so try something like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;arcpy.CalculateField_management(inFeatures, 'NEWFIELD', str(!FIELD1!) + str(!FIELD2!), 'PYTHON')&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The Python .join method is for Python-specific strings, which is very different than the ArcGIS tabular concatenation I think you wanting to implement. For example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;list = ["A","B","C"]
print "-".join(list)
&amp;gt;&amp;gt;&amp;gt; A-B-C&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;BTW: You second to last line in your code: arcpy.CalculateField-management needs to be arcpy.CalculateField&lt;/SPAN&gt;&lt;STRONG&gt;_&lt;/STRONG&gt;&lt;SPAN&gt;management (underscore not a dash). Also, I see you have cleaned up your path names - that's looks way better! Although if I were you, I would get rid of the '4_MAPPING_DATA_SUPPORT' name (don't start a folder name with a number)! If you are interested, here's some aditional unsoliced &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; advice pertaining to GIS naming conventions: &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/21526-Trouble-with-Feature-Datasets-in-directories-with-spaces?p=139246&amp;amp;viewfull=1#post139246" rel="nofollow noopener noreferrer" target="_blank"&gt;http://forums.arcgis.com/threads/21526-Trouble-with-Feature-Datasets-in-directories-with-spaces?p=139246&amp;amp;viewfull=1#post139246&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:35:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93974#M7326</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2021-12-10T23:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: AddField Failed to Execute???</title>
      <link>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93975#M7327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry - per your actual question: No, there's nothing wrong with the way you are adding the "COUNT" field that I can see.... Unless you already have a field called "COUNT"... Shapefiles do have a limit on the field name lenth (10 character max), but you are not exceeding that... Also, there are a handfull of "reserved" field names you cannot use since they mess with the underlying RDBMS stuff. Forget what those are off the top of my head, but I verified that "COUNT" was not one of them (at least for shapefiles).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Apr 2013 21:09:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93975#M7327</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2013-04-30T21:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: AddField Failed to Execute???</title>
      <link>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93976#M7328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, I am trying to make 2 fields into 1 so I can compare different values between two layers. For Example, Flag will combine with 2011_Traff to make 1 field with both values. I made the correction in my calculate field but now I'm getting an error of invalid syntax in line 20 which is my calculate field line. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
import arcpy, traceback
from arcpy import env

mxd = arcpy.mapping.MapDocument("CURRENT")

# Join Fields
fc = 'K:\TASS\4_MAPPING_DATA_SUPPORT\Traffic_Mapping\Traffic_Count_Data\2011_Counts\2011_Annual_Stations\Annual_Stations_2011.shp'
env.workspace = 'K:\TASS\4_MAPPING_DATA_SUPPORT\Traffic_Mapping\Traffic_Count_Data\District_Labels_Folder\Abilene_Labels.gdb'

#fields_to_join = ['!F2011_TRAF!', '!FLAG!']
arcpy.AddField_management(fc, 'COUNT', 'TEXT')
arcpy.CalculateField_management(inFeatures, 'COUNT', str(!F2011_TRAF!) + str(!FLAG!), 'PYTHON')

#fields_to_join = ['!TextString!', '!TFLAG!']
arcpy.AddField_management(inFeatures, 'TRAFFIC', 'TEXT')
arcpy.CalculateField_management(inFeatures, 'TRAFFIC', str(!TextString!) + str(!TFLAG!), 'PYTHON')

lstLayers = arcpy.mapping.ListLayers(mxd)

flayer = arcpy.mapping.ListLayers(mxd, "AADT")[0]
alayer = arcpy.mapping.ListLayers(mxd, "AADTAnnoLabel")[0]

# Search Joined 
FRows = arcpy.SearchCursor(flayer)
ARows = arcpy.SearchCursor(alayer)

ffields = arcpy.ListFields(flayer, "COUNT", "String")
afields = arcpy.ListFields(alayer, "TRAFFIC", "String")

FList = []
AList = []

for row in FRows:
&amp;nbsp;&amp;nbsp;&amp;nbsp; Fvalue = row.getValue("COUNT")
&amp;nbsp;&amp;nbsp;&amp;nbsp; FList.append(str(Fvalue))

for row in ARows:
&amp;nbsp;&amp;nbsp;&amp;nbsp; Avalue = row.getValue("TRAFFIC")
&amp;nbsp;&amp;nbsp;&amp;nbsp; AList.append(str(Avalue))

matched = set(FList) &amp;amp; set(AList)

for x in matched:
&amp;nbsp;&amp;nbsp;&amp;nbsp; exp = '"TRAFFIC" = ' + "'" + x + "'"
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.SelectLayerByAttribute_management("AADTAnnoLabel", "ADD_TO_SELECTION", exp)
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.SelectLayerByAttribute_management("AADTAnnoLabel", "SWITCH_SELECTION")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:35:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93976#M7328</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2021-12-10T23:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: AddField Failed to Execute???</title>
      <link>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93977#M7329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Might this line of code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.CalculateField_management(inFeatures, 'COUNT', str(!F2011_TRAF!) + str(!FLAG!), 'PYTHON')&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Need to be something like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.CalculateField_management(inFeatures, 'COUNT', 'str(!F2011_TRAF!) + str(!FLAG!)', 'PYTHON')&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I put quote around the calculated expression.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 May 2013 14:31:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93977#M7329</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2013-05-01T14:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: AddField Failed to Execute???</title>
      <link>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93978#M7330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Woops - yes the expression must be in a string format of course, so &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;arcpy.CalculateField_management(inFeatures, 'COUNT', 'str(!F2011_TRAF!) + str(!FLAG!)', 'PYTHON')&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;is correct.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 May 2013 14:55:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93978#M7330</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2013-05-01T14:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: AddField Failed to Execute???</title>
      <link>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93979#M7331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm sorry Chris!! I'm trying to understand. I throw up my hands. It keeps saying it doesn't like my shapefile (Error Attached). I've checked the spelling and location 4 times and I see nothing wrong.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 May 2013 18:07:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93979#M7331</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2013-05-01T18:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: AddField Failed to Execute???</title>
      <link>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93980#M7332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Which AddField statement is it failing on?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.AddField_management(inFeatures, 'TRAFFIC', 'TEXT')&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Where is the variable inFeatures defined in your script?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 May 2013 18:35:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93980#M7332</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2013-05-01T18:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: AddField Failed to Execute???</title>
      <link>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93981#M7333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I saw it. It was stopping at the veri first AddField. I went back to the help desk printout. Sorry, inFeatures was supposed to be defined because it is the in_Table name. I think I also see that my fc (which is my shapefile) I need to define the in_table for that as well. So my command should change to:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
fc = 'K:\TASS\4_MAPPING_DATA_SUPPORT\Traffic_Mapping\Traffic_Count_Data\2011_Counts\2011_Annual_Stations\Annual_Stations_2011.shp'
env.workspace = 'K:\TASS\4_MAPPING_DATA_SUPPORT\Traffic_Mapping\Traffic_Count_Data\District_Labels_Folder\Abilene_Labels.gdb'
inFeatures = "AADTAnnoLabel"
Table = "AADT"

fields_to_join = ['!F2011_TRAF!', '!FLAG!']
arcpy.AddField_management(Table, 'COUNT', 'TEXT')
arcpy.CalculateField_management(inFeatures, 'COUNT', 'str(!F2011_TRAF!) + str(!FLAG!)', 'PYTHON')

fields_to_join = ['!TextString!', '!TFLAG!']
arcpy.AddField_management(inFeatures, 'TRAFFIC', 'TEXT')
arcpy.CalculateField-management(inFeatures, 'TRAFFIC', 'str(!TextString!) + str(!TFLAG!)', 'PYTHON')

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:35:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93981#M7333</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2021-12-10T23:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: AddField Failed to Execute???</title>
      <link>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93982#M7334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I think the problem lies in how you are defining your paths (Python is very picky about this).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You are using:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;env.workspace = 'K:\TASS\4_MAPPING_DATA_SUPPORT\Traffic_Mapping\Traffic_Count_Data\District_Labels_Folder\Abilene_Labels.gdb'&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;which should be rewritten to be either one of the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. env.workspace = r'K:\TASS\_MAPPING_DATA_SUPPORT\Traffic_Mapping\Traffic_Count_Data\District_Labels_Folder\Abilene_Labels.gdb'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. env.workspace = 'K:\\TASS\4_MAPPING_DATA_SUPPORT\\Traffic_Mapping\\Traffic_Count_Data\\District_Labels_Folder\\Abilene_Labels.gdb'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. env.workspace = 'K:/TASS/4_MAPPING_DATA_SUPPORT/Traffic_Mapping/Traffic_Count_Data/District_Labels_Folder/Abilene_Labels.gdb'&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is a common issue! So basicall these are all okay:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. path = r"C:\temp\test.shp" &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. path = "C:\\temp\\test.shp"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. path = "C:/temp/test.shp"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But this is NOT okay:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;path = "C:\temp\test.shp"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;By itself, the "\" charater denotes a "new line", not a path delimter.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 May 2013 19:29:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93982#M7334</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2013-05-01T19:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: AddField Failed to Execute???</title>
      <link>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93983#M7335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Duh!! Oh my God, How stupid I forgot the r!! The whole program works now. Thanks Chris, for your patience, knowledge and help. I really appreciate your time. Thanks again!!!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 May 2013 14:57:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/addfield-failed-to-execute/m-p/93983#M7335</guid>
      <dc:creator>MichelleCouden1</dc:creator>
      <dc:date>2013-05-02T14:57:41Z</dc:date>
    </item>
  </channel>
</rss>

