Changeset 3364
- Timestamp:
- 05/15/08 11:53:55 (2 months ago)
- Files:
-
- 1 modified
-
trunk/opus_core/store/esri_storage.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/opus_core/store/esri_storage.py
r3262 r3364 391 391 table_names.append(str(fc)) 392 392 fc = fcs.Next() 393 394 return table_names 393 394 # Loop through table names and strip out any SDE specific naming 395 table_names_stripped = [] 396 for i in table_names: 397 x = i.split('.') 398 table_names_stripped.append(x[-1]) 399 400 return table_names_stripped 395 401 396 402 def table_exists(self, table_name):
