<?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: Almost there, but I need help finding a bug in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339518#M26598</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My guess is you are using the samples from this blog post &lt;A href="http://blogs.esri.com/esri/arcgis/2010/12/14/combining-data-driven-pages-with-python-and-arcpy-mapping/" title="http://blogs.esri.com/esri/arcgis/2010/12/14/combining-data-driven-pages-with-python-and-arcpy-mapping/"&gt;Combining Data Driven Pages with Python and arcpy.mapping | ArcGIS Blog&lt;/A&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;They show samples using both variables, but I'm wondering if pgNum is a reserved word.&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Sep 2015 18:17:23 GMT</pubDate>
    <dc:creator>RebeccaStrauch__GISP</dc:creator>
    <dc:date>2015-09-25T18:17:23Z</dc:date>
    <item>
      <title>Almost there, but I need help finding a bug</title>
      <link>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339510#M26590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; I'm having a problem with my code.&amp;nbsp; It creates data driven pages from two seperate MXDs as left and right side page PDFs.&amp;nbsp; Then it puts them together into one PDF.&amp;nbsp;&amp;nbsp; It used to work on my Windows XP machine and ArcGIS 10.0 but is giving me trouble on my new Windows 7 machine with ArcGIS 10.1.&amp;nbsp; The code is below.&amp;nbsp; Most is commented out because the failure happens when it tries to combine the two sets of pdfs.&amp;nbsp; Any ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;import arcpy, os

# Create an output directory variable
#
outDir = r"C:\Working_Directory\Combined"&amp;nbsp; 

# Create a new, empty pdf document in the specified output directory
#
finalpdf_filename = outDir + r"\FinalStorm.pdf"
if os.path.exists(finalpdf_filename):
&amp;nbsp; os.remove(finalpdf_filename)
finalPdf = arcpy.mapping.PDFDocumentCreate(finalpdf_filename)

# Add the title page to the pdf
#
# finalPdf.appendPages(r"G:\CamarilloGIS\Projects\Atlases\Storm_Drain\2007\CoverSheet.pdf")

# Add the index map to the pdf
#
#&amp;nbsp; finalPdf.appendPages(r"G:\CamarilloGIS\Projects\Atlases\Storm_Drain\2007\GridIndex.pdf")

# Create Facing Pages for the map book
# Create pages for left-hand side of the book
#
mxdPathLeft = r"G:\CamarilloGIS\Projects\PublicWorks\STORMWATER\Updates\Even11x17_Aerial.mxd"
tempMapLeft = arcpy.mapping.MapDocument(mxdPathLeft)
tempDDPLeft = tempMapLeft.dataDrivenPages

# Loop creates individual pdf's for odd numbered pages
#
#for pgNumLeft in range(1, tempDDPLeft.pageCount + 1,):
#&amp;nbsp; temp_filename = r"C:\Working_Directory\L_" + \
#&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;&amp;nbsp; str(pgNumLeft) + ".pdf"
#&amp;nbsp; if os.path.exists(temp_filename):
#&amp;nbsp;&amp;nbsp;&amp;nbsp; os.remove(temp_filename)
#&amp;nbsp; tempDDPLeft.exportToPDF(temp_filename, "RANGE", pgNumLeft)
#
# Create pages for right-hand side of the book
#
mxdPathRight = r"G:\CamarilloGIS\Projects\PublicWorks\STORMWATER\Updates\Odd11x17_Aerial.mxd"
tempMapRight = arcpy.mapping.MapDocument(mxdPathRight)
tempDDPRight = tempMapRight.dataDrivenPages

# Loop creates individual pdf's for even numbered pages
#
#for pgNumRight in range(2, tempDDPRight.pageCount + 1,):
#&amp;nbsp; temp_filename = r"C:\Working_Directory\R_" + \
#&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;&amp;nbsp;&amp;nbsp; str(pgNumRight) + ".pdf"
#&amp;nbsp; if os.path.exists(temp_filename):
#&amp;nbsp;&amp;nbsp;&amp;nbsp; os.remove(temp_filename)
#&amp;nbsp; tempDDPRight.exportToPDF(temp_filename, "RANGE", pgNumRight)

# Append right and left-hand pages together in proper order
i = 1 #set i equal to 1 to start with the first PDFs
for pgNum in range(1, tempDDPLeft.pageCount + 1):
&amp;nbsp; print "Page", pgNum, "of", tempDDPLeft.pageCount
&amp;nbsp; tempPDF = r"C:\Working_Directory\combined" + os.sep + str(pgNum) + ".pdf"
&amp;nbsp; finalPdf.appendPages(r"C:\Working_Directory\L_" + str(i) + ".pdf") #appends the first PDF from the odds
&amp;nbsp; finalPdf.appendPages(r"C:\Working_Directory\R_" + str(i) + ".pdf") #appends the first PDF from the evens
&amp;nbsp; i = i + 1 #adds 1 to i so that it will append PDFs number 2 next, then 3, 4, and so on through 48finalPdf.appendPages(tempPDF)
# Update the properties of the final pdf
#
finalPdf.updateDocProperties(pdf_open_view="USE_THUMBS",
&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;&amp;nbsp;&amp;nbsp; pdf_layout="SINGLE_PAGE")

# Save your result
#
finalPdf.saveAndClose()

# Delete variables
#
del finalPdf, mxdPathLeft, mxdPathRight, tempDDPLeft, tempDDPRight, 
tempMapLeft, tempMapRight, tempPDF&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the error...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="font-style:italic;"&gt;Page 1 of 68&lt;BR /&gt;&lt;BR /&gt;Traceback (most recent call last):&lt;BR /&gt;&amp;nbsp; File "C:\Working_Directory\PythonCombine - Copy.py", line 59, in &amp;lt;module&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; finalPdf.appendPages(r"C:\Working_Directory\R_" + str(i) + ".pdf") #appends the first PDF from the evens&lt;BR /&gt;&amp;nbsp; File "C:\Program Files (x86)\ArcGIS\Desktop10.1\arcpy\arcpy\_mapping.py", line 960, in appendPages&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return convertArcObjectToPythonObject(self._arc_object.appendPages(*gp_fixargs((pdf_path, password_for_pdf), True)))&lt;BR /&gt;AttributeError: Invalid path&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've checked the paths to the the .py file and the pages and the _mapping.py.&amp;nbsp; But I suspect their is something wrong with _mapping.py &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;__&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jul 2013 23:04:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339510#M26590</guid>
      <dc:creator>TomMagdaleno</dc:creator>
      <dc:date>2013-07-16T23:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: Almost there, but I need help finding a bug</title>
      <link>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339511#M26591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The error makes it sound like a problem with the path you are passing to the function (although ArcGIS errors are seldom that informative).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can put:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;print r"C:\Working_Directory\L_" + str(i) + ".pdf"
print r"C:\Working_Directory\R_" + str(i) + ".pdf"&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;just above the line causing the error (59) and see that it prints exactly what you were expecting.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You could also try string formatting with double slashes, in case the regular expression bit is causing issues:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;finalPdf.appendPages("C:\\Working_Directory\\L_%s.pdf" % str(i))&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If neither of these helps track down the error, it may be an issue with Mapping...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:03:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339511#M26591</guid>
      <dc:creator>StacyRendall1</dc:creator>
      <dc:date>2021-12-11T16:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Almost there, but I need help finding a bug</title>
      <link>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339512#M26592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the tips Stacy.&amp;nbsp; I tried changing to string style and it gave me the exact same error.&amp;nbsp; I then tried adding the two lines above line 59 and I got an error at line 61.&amp;nbsp; &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;&amp;nbsp; finalPdf.appendPages(r"C:\\Working_Directory\\R_%s.pdf" % str(i)) #appends the first PDF from the evens&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Which is interesting because it didn't fail on the first Left sheet, only when it tried to grab the first right sheet.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 15:51:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339512#M26592</guid>
      <dc:creator>TomMagdaleno</dc:creator>
      <dc:date>2013-07-17T15:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: Almost there, but I need help finding a bug</title>
      <link>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339513#M26593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Once you change from '\' in the path to '\\' you don't need the &lt;/SPAN&gt;&lt;STRONG style="font-style: italic;"&gt;r&lt;/STRONG&gt;&lt;SPAN&gt; at the start of the string. Did you possibly remove the r on line 60, but leave it at 61?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jul 2013 20:33:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339513#M26593</guid>
      <dc:creator>StacyRendall1</dc:creator>
      <dc:date>2013-07-17T20:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: No need to delete variables</title>
      <link>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339514#M26594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
# Delete variables
#
del finalPdf, mxdPathLeft, mxdPathRight, tempDDPLeft, tempDDPRight, 
tempMapLeft, tempMapRight, tempPDF&lt;/PRE&gt;&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Tom, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just an aside...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know you're being tidy, but all Python variables are deleted for you when the script ends. The only exception to this are ones that cannot be easily deleted because of other objects they are related to in memory, the two examples that come to mind are layers and table views that have active joins, and cursor objects.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As for your error, my guess is the pdf file you're trying to append (r"C:\Working_Directory\R_" + str(i) + ".pdf") does not exist. You can check for this with an if statement before you try to append it. ("if arcpy.Exists()" or "if os.path.exists()")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To keep my path stuff easier to manage, I almost always use os.path.join() instead of adding path strings together with +. Also, don't forget to use env.workspace to save yourself work constructing paths!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;One more thing, the "%s" format code already converts your variable to a string representation, so you can just use:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;r"C:\Working_Directory\R_%s.pdf" % i&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;or&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;r"C:\Working_Directory\R_{0}.pdf".format(i)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:03:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339514#M26594</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2021-12-11T16:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: Almost there, but I need help finding a bug</title>
      <link>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339515#M26595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To anyone using this script, I only changed the file locations and was still getting the error messsage that Tom was getting above (I'm using version 10.2.2).&amp;nbsp; After hours of browsing websites/blogs for information that might help, I found that changing the few instances of "pgNum(Left/Right)" to "pageNum(Left/Right)" solved all my problems!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 17:01:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339515#M26595</guid>
      <dc:creator>KellyDoss2</dc:creator>
      <dc:date>2015-09-25T17:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Almost there, but I need help finding a bug</title>
      <link>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339516#M26596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you elaborate on that? I don't see how simply changing a variable name could have solved anything, unless it was otherwise originally specified.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 17:20:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339516#M26596</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-09-25T17:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: Almost there, but I need help finding a bug</title>
      <link>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339517#M26597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure why it worked, as I'm a beginner at Python. &amp;nbsp;pgNum isn't a variable I defined. &amp;nbsp;Based on the error message I was getting (exactly the same as in the original post I replied to), and errors I could avoid by commenting out sections of my script, I assumed there was something off with the loops, so I started investigating. &amp;nbsp;I looked at various other similar scripts on blog sites and noticed that some of them were using "page" instead of "pg", so I decided to try it and it worked. &amp;nbsp;The small difference may just be based on the version of Python or Arc I'm using....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 18:11:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339517#M26597</guid>
      <dc:creator>KellyDoss2</dc:creator>
      <dc:date>2015-09-25T18:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: Almost there, but I need help finding a bug</title>
      <link>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339518#M26598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My guess is you are using the samples from this blog post &lt;A href="http://blogs.esri.com/esri/arcgis/2010/12/14/combining-data-driven-pages-with-python-and-arcpy-mapping/" title="http://blogs.esri.com/esri/arcgis/2010/12/14/combining-data-driven-pages-with-python-and-arcpy-mapping/"&gt;Combining Data Driven Pages with Python and arcpy.mapping | ArcGIS Blog&lt;/A&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;They show samples using both variables, but I'm wondering if pgNum is a reserved word.&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 18:17:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339518#M26598</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-09-25T18:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Almost there, but I need help finding a bug</title>
      <link>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339519#M26599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is where I got the original script.&amp;nbsp;http://resources.arcgis.com/en/help/main/10.2/index.html#//00s90000002p000000&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 18:27:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339519#M26599</guid>
      <dc:creator>KellyDoss2</dc:creator>
      <dc:date>2015-09-25T18:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: Almost there, but I need help finding a bug</title>
      <link>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339520#M26600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you would &lt;EM&gt;think&lt;/EM&gt; it would be correct, unless it changed between 10.1 and 10.2.​&amp;nbsp; Hard to say without doing a lot more digging....which, since you got it working, just worth noting I guess.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 18:42:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/almost-there-but-i-need-help-finding-a-bug/m-p/339520#M26600</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-09-25T18:42:20Z</dc:date>
    </item>
  </channel>
</rss>

