Skip to content

Commit

Permalink
syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Michel Pelletier committed Aug 18, 1999
1 parent 2416023 commit a2ec76f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions Catalog.py
Expand Up @@ -334,9 +334,15 @@ def uncatalogObject(self, uid):
# ZClass problems, some items might not be here. The try's
# catch any inconsistencies and lets 'Update Catalog' sanify
# the situation
try: del self.data[rid] except: pass
try: del self.uids[uid] except: pass
try: del self.paths[rid] except: pass
try:
del self.data[rid]
except: pass
try:
del self.uids[uid]
except: pass
try:
del self.paths[rid]
except: pass


def clear(self):
Expand Down

0 comments on commit a2ec76f

Please sign in to comment.