resolve small bug in onLoad()

This commit is contained in:
JHCD 2015-06-29 17:06:11 +02:00
parent 7da58fe521
commit 407e22e1e4
7 changed files with 13 additions and 26 deletions

View file

@ -34,10 +34,8 @@ def onLoad():
@return: nothing
"""
try:
########## User onLoad CODE ##########
########## User onLoad CODE ##########
# we have to do nothing here...
pass
except:
logging.error("unknown error")
logging.debug("unknown error", exc_info=True)

View file

@ -33,10 +33,8 @@ def onLoad():
@return: nothing
"""
try:
########## User onLoad CODE ##########
########## User onLoad CODE ##########
# we have to do nothing here...
pass
except:
logging.error("unknown error")
logging.debug("unknown error", exc_info=True)

View file

@ -34,10 +34,8 @@ def onLoad():
@return: nothing
"""
try:
########## User onLoad CODE ##########
########## User onLoad CODE ##########
# we have to do nothing here...
pass
except:
logging.error("unknown error")
logging.debug("unknown error", exc_info=True)

View file

@ -29,10 +29,8 @@ def onLoad():
@return: nothing
"""
try:
########## User onLoad CODE ##########
########## User onLoad CODE ##########
# we have to do nothing here...
pass
except:
logging.error("unknown error")
logging.debug("unknown error", exc_info=True)

View file

@ -30,10 +30,8 @@ def onLoad():
@return: nothing
"""
try:
########## User onLoad CODE ##########
########## User onLoad CODE ##########
# we have to do nothing here...
pass
except:
logging.error("unknown error")
logging.debug("unknown error", exc_info=True)

View file

@ -31,10 +31,8 @@ def onLoad():
@return: nothing
"""
try:
########## User onLoad CODE ##########
########## User onLoad CODE ##########
# we have to do nothing here...
pass
except:
logging.error("unknown error")
logging.debug("unknown error", exc_info=True)

View file

@ -40,9 +40,8 @@ def onLoad():
"""
try:
########## User onLoad CODE ##########
pass
########## User onLoad CODE ##########
except:
logging.error("unknown error")
logging.debug("unknown error", exc_info=True)