Commit df4ed39e authored by Jim Fulton's avatar Jim Fulton

Added try accept to avoid problem in debugging info.

parent c8fa7d8a
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
# #
############################################################################## ##############################################################################
__doc__="""System management components""" __doc__="""System management components"""
__version__='$Revision: 1.55 $'[11:-2] __version__='$Revision: 1.56 $'[11:-2]
import sys,os,time,string,Globals, Acquisition, os import sys,os,time,string,Globals, Acquisition, os
...@@ -292,9 +292,11 @@ class ApplicationManager(Folder,CacheManager): ...@@ -292,9 +292,11 @@ class ApplicationManager(Folder,CacheManager):
rc=_v_rcs rc=_v_rcs
rd=[] rd=[]
for n, c in nc.items(): for n, c in nc.items():
prev=rc[n] try:
if c > prev: prev=rc[n]
rd.append( (c - prev, (c, prev, n)) ) if c > prev:
rd.append( (c - prev, (c, prev, n)) )
except: pass
rd.sort() rd.sort()
rd.reverse() rd.reverse()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment