<?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 TypeError: can only concatenate str (not &amp;quot;NoneType&amp;quot;) to str in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1202869#M26422</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I hope this is posted in the right place.&amp;nbsp; I am troubleshooting a script that I have been running for almost a year now which updates a hosted feature service in ArcGIS Online.&amp;nbsp; We recently upgraded our ArcMap and Server to 10.8.2 and ArcGIS Pro 3.0.1.&amp;nbsp; I am wondering if this update has something to do with it?&amp;nbsp; Anyhow, I have posted the python&amp;nbsp; code below and attached a pic of the TypeError I receive when I try to run the script from Python 3 IDLE.&amp;nbsp; Please help.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy
import os, sys
from arcgis.gis import GIS

### Start setting variables
# Set the path to the project
prjPath = "I:\\users\\abishop\\PY\\FeatureServiceUpdates\\AgUseParcels\\AgUseParcels.aprx"

# Feature service/SD name in arcgis.com, user/password of the owner account
sd_fs_name = "Agricultural_Use_Parcels"
portal = "https://mcpafl.maps.arcgis.com/" # Can also reference a local portal
user = "***************"
password = "*************"

# Set sharing options
shrOrg = True
shrEveryone = False
shrGroups = ""

### End setting variables

# Local paths to create temporary content
relPath = sys.path[0]
sddraft = os.path.join(relPath, "AgUseParcels.sddraft")
sd = os.path.join(relPath, "AgUseParcels.sd")

# Create a new SDDraft and stage to SD
print("Creating SD file")
arcpy.env.overwriteOutput = True
prj = arcpy.mp.ArcGISProject(prjPath)
mp = prj.listMaps()[0]
arcpy.mp.CreateWebLayerSDDraft(mp, sddraft, sd_fs_name, 'MY_HOSTED_SERVICES', 'FEATURE_ACCESS','', True, True)
arcpy.StageService_server(sddraft, sd)

print("Connecting to {}".format(portal))
gis = GIS(portal, user, password)

# Find the SD, update it, publish /w overwrite and set sharing and metadata
print("Search for original SD on portal…")
sdItem = gis.content.search("{} AND owner:{}".format(sd_fs_name, user), item_type="Service Definition")[0]
print("Found SD: {}, ID: {} n Uploading and overwriting…".format(sdItem.title, sdItem.id))
sdItem.update(data=sd)
print("Overwriting existing feature service…")
fs = sdItem.publish(overwrite=True)

if shrOrg or shrEveryone or shrGroups:
    print("Setting sharing options…")
    fs.share(org=shrOrg, everyone=shrEveryone, groups=shrGroups)

print("Finished updating: {} – ID: {}".format(fs.title, fs.id))

#provide input to stop script - uncomment input below if you need to see the script final output in the command window
input('Press ENTER to exit') &lt;/LI-CODE&gt;</description>
    <pubDate>Mon, 15 Aug 2022 15:02:19 GMT</pubDate>
    <dc:creator>ABishop</dc:creator>
    <dc:date>2022-08-15T15:02:19Z</dc:date>
    <item>
      <title>TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1202869#M26422</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I hope this is posted in the right place.&amp;nbsp; I am troubleshooting a script that I have been running for almost a year now which updates a hosted feature service in ArcGIS Online.&amp;nbsp; We recently upgraded our ArcMap and Server to 10.8.2 and ArcGIS Pro 3.0.1.&amp;nbsp; I am wondering if this update has something to do with it?&amp;nbsp; Anyhow, I have posted the python&amp;nbsp; code below and attached a pic of the TypeError I receive when I try to run the script from Python 3 IDLE.&amp;nbsp; Please help.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy
import os, sys
from arcgis.gis import GIS

### Start setting variables
# Set the path to the project
prjPath = "I:\\users\\abishop\\PY\\FeatureServiceUpdates\\AgUseParcels\\AgUseParcels.aprx"

# Feature service/SD name in arcgis.com, user/password of the owner account
sd_fs_name = "Agricultural_Use_Parcels"
portal = "https://mcpafl.maps.arcgis.com/" # Can also reference a local portal
user = "***************"
password = "*************"

# Set sharing options
shrOrg = True
shrEveryone = False
shrGroups = ""

### End setting variables

# Local paths to create temporary content
relPath = sys.path[0]
sddraft = os.path.join(relPath, "AgUseParcels.sddraft")
sd = os.path.join(relPath, "AgUseParcels.sd")

# Create a new SDDraft and stage to SD
print("Creating SD file")
arcpy.env.overwriteOutput = True
prj = arcpy.mp.ArcGISProject(prjPath)
mp = prj.listMaps()[0]
arcpy.mp.CreateWebLayerSDDraft(mp, sddraft, sd_fs_name, 'MY_HOSTED_SERVICES', 'FEATURE_ACCESS','', True, True)
arcpy.StageService_server(sddraft, sd)

print("Connecting to {}".format(portal))
gis = GIS(portal, user, password)

# Find the SD, update it, publish /w overwrite and set sharing and metadata
print("Search for original SD on portal…")
sdItem = gis.content.search("{} AND owner:{}".format(sd_fs_name, user), item_type="Service Definition")[0]
print("Found SD: {}, ID: {} n Uploading and overwriting…".format(sdItem.title, sdItem.id))
sdItem.update(data=sd)
print("Overwriting existing feature service…")
fs = sdItem.publish(overwrite=True)

if shrOrg or shrEveryone or shrGroups:
    print("Setting sharing options…")
    fs.share(org=shrOrg, everyone=shrEveryone, groups=shrGroups)

print("Finished updating: {} – ID: {}".format(fs.title, fs.id))

#provide input to stop script - uncomment input below if you need to see the script final output in the command window
input('Press ENTER to exit') &lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 15 Aug 2022 15:02:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1202869#M26422</guid>
      <dc:creator>ABishop</dc:creator>
      <dc:date>2022-08-15T15:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1202924#M26423</link>
      <description>&lt;P&gt;It mean that either the path or the folder id is returning None.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where this occurs depends on whether any of your print statements are even reached.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 16:07:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1202924#M26423</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2022-08-15T16:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1202949#M26424</link>
      <description>&lt;P&gt;Hello Dan,&lt;/P&gt;&lt;P&gt;Thank you for replying.&amp;nbsp; Yes, it says line 49 in the actual script which is calling out the&amp;nbsp;sdItem.update(data=sd) module.&amp;nbsp; Any chance this changed with our upgrade?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 16:55:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1202949#M26424</guid>
      <dc:creator>ABishop</dc:creator>
      <dc:date>2022-08-15T16:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1203047#M26425</link>
      <description>&lt;P&gt;That gets a bit difficult since you are using the arcgis module which is now at 2.0.1 and you would have to examine their help topics&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/python/api-reference/" target="_blank"&gt;API Reference for the ArcGIS API for Python | ArcGIS API for Python&lt;/A&gt;&lt;/P&gt;&lt;P&gt;maybe&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#item" target="_blank"&gt;arcgis.gis module | ArcGIS API for Python&lt;/A&gt;&amp;nbsp;with a lot of scrolling under "item", but I don't do portal stuff, so I can't help more.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 20:43:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1203047#M26425</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2022-08-15T20:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1203487#M26427</link>
      <description>&lt;P&gt;I'm still trying to determine why the code works for one feature service but not another?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2022 20:27:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1203487#M26427</guid>
      <dc:creator>ABishop</dc:creator>
      <dc:date>2022-08-16T20:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1203515#M26428</link>
      <description>&lt;P&gt;That is beyond my domain... things get "cloudy" for me when you talk feature service &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&amp;nbsp; Tech Support perhaps.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2022 21:40:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1203515#M26428</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2022-08-16T21:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1203821#M26430</link>
      <description>&lt;P&gt;Ok thank you&lt;/P&gt;</description>
      <pubDate>Wed, 17 Aug 2022 16:49:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1203821#M26430</guid>
      <dc:creator>ABishop</dc:creator>
      <dc:date>2022-08-17T16:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1204230#M26433</link>
      <description>&lt;P&gt;Dan and other's who may see this thread.&amp;nbsp; A good old fashion truncate table and append worked!&lt;/P&gt;</description>
      <pubDate>Thu, 18 Aug 2022 16:46:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1204230#M26433</guid>
      <dc:creator>ABishop</dc:creator>
      <dc:date>2022-08-18T16:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1221670#M26512</link>
      <description>&lt;P&gt;Did you truncate/append the source data you were trying to push to AGO? Meaning there was something wrong with the source data...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2022 17:29:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1221670#M26512</guid>
      <dc:creator>BrianPangtay</dc:creator>
      <dc:date>2022-10-13T17:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1221675#M26513</link>
      <description>&lt;P&gt;Hello Brian,&lt;/P&gt;&lt;P&gt;I don't understand your question.&amp;nbsp; I truncated and appended the data in AGO with the source data from my PC.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2022 17:33:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1221675#M26513</guid>
      <dc:creator>ABishop</dc:creator>
      <dc:date>2022-10-13T17:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1221685#M26514</link>
      <description>&lt;P&gt;I've never used Truncate/Append on AGO...only on source data: PC and/or database.&lt;/P&gt;&lt;P&gt;Usually right-click on layer in ArcGIS Pro: Sharing&amp;gt;Overwrite map layer to update AGO.&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2022 17:48:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1221685#M26514</guid>
      <dc:creator>BrianPangtay</dc:creator>
      <dc:date>2022-10-13T17:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1221688#M26515</link>
      <description>&lt;P&gt;Yes, I have also always used the same method you describe above, to overwrite a map service manually.&amp;nbsp; But with&amp;nbsp; AGO, if you want to automate the process of overwriting the hosted feature layer using a python script, you can use the "truncate" and "append" tools on the hosted feature layers in your AGO content, then copy the python code to use in your script for automation.&amp;nbsp; Make sense?&amp;nbsp; Before, I used this method, I was using a script that had to log into AGO as the user, download the service definition file, etc.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2022 17:58:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1221688#M26515</guid>
      <dc:creator>ABishop</dc:creator>
      <dc:date>2022-10-13T17:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1221690#M26516</link>
      <description>&lt;P&gt;Can you share that part of the script so I can compare it to your original script above?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2022 18:06:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1221690#M26516</guid>
      <dc:creator>BrianPangtay</dc:creator>
      <dc:date>2022-10-13T18:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1221701#M26517</link>
      <description>&lt;P&gt;Sure no problem!&lt;/P&gt;&lt;LI-CODE lang="python"&gt;print("Starting script... importing arcpy modules, starting timer, and setting local variables...")
# Process: import arcpy modules
import arcpy, os, sys
from arcpy import env
from datetime import datetime
import ctypes
ctypes.windll.kernel32.SetConsoleTitleW('AgUseParcelsFSUpdate')

# Process: start timer
startTime = time.perf_counter()

# Process: set local variables
AgUseParcelsFS = "https://services5.arcgis.com/zh4IrtLvSvA0sfub/arcgis/rest/services/AgUseParcels/FeatureServer/0"
AgUseParcelsFC = r"K:\GIS_TOOLS\DB\arcgis2.sde\mcpagis.DBO.AgUseParcels"
print("All set... starting truncate and append to update AgUseParcels hosted feature layer...")

# Process: truncate hosted feature layer
arcpy.management.TruncateTable(AgUseParcelsFS)
print("AgUseParcels hosted feature layer truncated")

# Process: append hosted feautre layer with local data
arcpy.management.Append(AgUseParcelsFC, AgUseParcelsFS, "TEST", None, '', '')
print("AgUseParcels hosted feature layer appended with AgUseParcels feature class in arcgis2.sde")

print("AgUseParcelsFSUpdate script completed successfully")

# Process: end timer
endTime = time.perf_counter()
print("Timer stopped")
elapsedTime = round((endTime - startTime) / 60, 2)
print("Script finished in {0} minutes".format(elapsedTime))

# Process: date and time stamp
date = datetime.now().strftime("%Y_%m_%d-%I:%M:%S_%p")
print("Date and time stamp: "+f"{date}")

# Process: provide input to stop script - uncomment input below if you need to see the script final output in the command window
input('Press ENTER to exit') &lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 13 Oct 2022 18:31:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1221701#M26517</guid>
      <dc:creator>ABishop</dc:creator>
      <dc:date>2022-10-13T18:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1221705#M26518</link>
      <description>&lt;P&gt;That was so much simpler than the original script.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2022 18:35:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1221705#M26518</guid>
      <dc:creator>BrianPangtay</dc:creator>
      <dc:date>2022-10-13T18:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1221706#M26519</link>
      <description>&lt;P&gt;Yes, exactly!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2022 18:36:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1221706#M26519</guid>
      <dc:creator>ABishop</dc:creator>
      <dc:date>2022-10-13T18:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1234525#M26591</link>
      <description>&lt;P&gt;I've been experiencing this same issue, after upgrading to ArcGIS Pro 3, and just like in Amanda's case I was using the workflow outlined at&amp;nbsp;&lt;A href="https://support.esri.com/en/technical-article/000023164" target="_blank"&gt;https://support.esri.com/en/technical-article/000023164 &lt;/A&gt;&amp;nbsp;to overwrite and update my services in AGOL.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now it fails on one of my APRX and works for others, am hoping to avoid doing the truncate/append route as the APRX it is failing for me has a lot of layers and definition queries.&lt;/P&gt;&lt;P&gt;Still working with Esri tech support in solving the issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Nov 2022 15:34:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1234525#M26591</guid>
      <dc:creator>Ramon_de_Leon</dc:creator>
      <dc:date>2022-11-23T15:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1234532#M26592</link>
      <description>&lt;P&gt;There is a bug in the ArcGIS API library that comes with ArcGIS Pro 3.x. I had the Service Definition located in a folder other than the root.:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Bug No:&amp;nbsp;BUG-000152141&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Synopsis:&amp;nbsp;In ArcGIS API for Python 2.0.1, the update() method fails to update a service definition if the service definition is located in a folder other than the root folder in ArcGIS Online.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Status: In Review&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Wed, 23 Nov 2022 15:50:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1234532#M26592</guid>
      <dc:creator>BrianPangtay</dc:creator>
      <dc:date>2022-11-23T15:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1234540#M26593</link>
      <description>&lt;P&gt;Thanks for the reply Brian, hope they get a fix sooner than later.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I guess, I'll stick to manually overwriting for the time being.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Nov 2022 16:12:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1234540#M26593</guid>
      <dc:creator>Ramon_de_Leon</dc:creator>
      <dc:date>2022-11-23T16:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: TypeError: can only concatenate str (not "NoneType") to str</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1234544#M26594</link>
      <description>&lt;P&gt;If you have this problem , you can just move your Service Definition in AGO to the root folder. That simple fix will solve this error.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Nov 2022 16:26:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/typeerror-can-only-concatenate-str-not-quot/m-p/1234544#M26594</guid>
      <dc:creator>BrianPangtay</dc:creator>
      <dc:date>2022-11-23T16:26:53Z</dc:date>
    </item>
  </channel>
</rss>

