<?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: Python syntax error in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/python-syntax-error/m-p/556370#M43470</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are correct!&amp;nbsp; I have been trying to fix the issue with line 13, but it wasn't actually line 13 that was causing the problem.&amp;nbsp; I was missing a closing parentheses just before it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A product of copy/paste when the copied text was actually incorrect.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've been looking at this off an on while doing other things for a couple hours lol...I knew it was going to be super basic. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for taking a look &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Sep 2015 20:54:53 GMT</pubDate>
    <dc:creator>CoyPotts1</dc:creator>
    <dc:date>2015-09-23T20:54:53Z</dc:date>
    <item>
      <title>Python syntax error</title>
      <link>https://community.esri.com/t5/python-questions/python-syntax-error/m-p/556368#M43468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm figuring this is a very basic error, but I have been looking at this for a good while now and I can't figure out the syntax error that is kicking back here.&amp;nbsp; Maybe a few other sets of eyes on here will help resolve the issue.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I keep getting a syntax error for line 16.&amp;nbsp; It is exactly the same as line 5, but line 5 runs just fine. &lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;# Start message
arcpy.AddMessage("Exporting the general features feature class to the " + dbDate + " FGDB...")

# Execute FeatureClassToFeatureClass - General
arcpy.FeatureClassToFeatureClass_conversion(generalFeatures, outFGDB, outGeneral)

# End message
arcpy.AddMessage("General features feature class has been exported to the " + dbDate + " FGDB!")
arcpy.AddMessage("...")
arcpy.AddMessage("...")

# Start message
arcpy.AddMessage("Exporting the node features feature class to the " + dbDate + " FGDB..."

# Execute FeatureClassTo FeatureClass - Node
arcpy.FeatureClassToFeatureClass_conversion(nodeFeatures, outFGDB, outNode)

# End message
arcpy.AddMessage("Node features feature class has been exported to the " + dbDate + " FGDB!")
arcpy.AddMessage("...")
arcpy.AddMessage("...")&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:02:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-syntax-error/m-p/556368#M43468</guid>
      <dc:creator>CoyPotts1</dc:creator>
      <dc:date>2021-12-12T00:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: Python syntax error</title>
      <link>https://community.esri.com/t5/python-questions/python-syntax-error/m-p/556369#M43469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Either line 13 is truncated, or you are missing a ")"&amp;nbsp; or maybe something else?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 20:49:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-syntax-error/m-p/556369#M43469</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-09-23T20:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: Python syntax error</title>
      <link>https://community.esri.com/t5/python-questions/python-syntax-error/m-p/556370#M43470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are correct!&amp;nbsp; I have been trying to fix the issue with line 13, but it wasn't actually line 13 that was causing the problem.&amp;nbsp; I was missing a closing parentheses just before it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A product of copy/paste when the copied text was actually incorrect.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've been looking at this off an on while doing other things for a couple hours lol...I knew it was going to be super basic. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for taking a look &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 20:54:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-syntax-error/m-p/556370#M43470</guid>
      <dc:creator>CoyPotts1</dc:creator>
      <dc:date>2015-09-23T20:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: Python syntax error</title>
      <link>https://community.esri.com/t5/python-questions/python-syntax-error/m-p/556371#M43471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;....sometimes an extra set of eyes is just what you need.&amp;nbsp;&amp;nbsp; Been there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 20:58:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-syntax-error/m-p/556371#M43471</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-09-23T20:58:37Z</dc:date>
    </item>
  </channel>
</rss>

