I need to list only feature datasets in a worksapce. However, when I use ListDatasets, it also lists two raster datasets in the same workspace (last two in the list). When I list using type 'feature', I get nothing. How can I make this function list only feature datasets?
>>> arcpy.ListDatasets()
[u'NDEP.BLM', u'NDEP.Parcels', u'NDEP.Surrounding_States', u'NDEP.Washoe_County', u'NDEP.Geology', u'NDEP.DEPTH_TO_GROUNDWATER', u'NDEP.LAND_USE_COVER_USDA_2007']
>>> arcpy.ListDatasets('feature')
[]
Stephanie