There seem to be a few of these. It's been an issue for a while - with ArcMap 10.3 the function to convert a model to a python script was only useful for populating the tool names, otherwise it needed to be rewritten. Now, similar to Gabriel's issue, Intersect has a similar problem. "Copy Python Command" returns this: arcpy.analysis.Intersect(r"BETA_AAFC_BUP_LU2010_Poly #;V_PopCtrs_2016_Buf5k_seldis_ #", r"BETA_AAFC_BUP_LU2010_Buff", "ALL", None, "INPUT") When what it needs is this: arcpy.analysis.Intersect(["BETA_AAFC_BUP_LU2010_Poly", "V_PopCtrs_2016_Buf5k_seldis_"], r"BETA_AAFC_BUP_LU2010_Buff", "ALL", None, "INPUT") For the record, this is ArcGIS Pro V2.1.1.
... View more