[FIX] Catch the Exception and not the all

bzr revid: stephane@openerp.com-20110422114335-jxm4jrbkw1hw24t3
This commit is contained in:
Stephane Wirtel 2011-04-22 13:43:35 +02:00
parent 1704c9f882
commit 6063f74810
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ if __name__ == '__main__':
custom_values = {}
try:
custom_values = dict(eval(options.custom_values))
except:
except Exception:
pass
parser.parse(msg_txt, custom_values)