at 9.3.1 the following code works fine:fcList = gp.ListFeatureClasses()
for fc in fcList:
descFC = gp.Describe(fc)
print "FC Name: " + fc + ", Path: " + descFC.CatalogPath
tblList = gp.ListTables()
for table in tblList:
print table
but trying to use Describe on the tables fails: tblList = gp.ListTables()
for table in tblList:
print table
descTBL = gp.Describe(table)
print descTBL.CatalogPath
what am I missing?