[FIX] tools.safe_eval: inconsistent indentation

bzr revid: odo@openerp.com-20130507084919-zovnqiv0axc3ikr3
This commit is contained in:
Olivier Dony 2013-05-07 10:49:19 +02:00
parent 9ed71ecf76
commit dc37c9ffcf
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ def safe_eval(expr, globals_dict=None, locals_dict=None, mode="eval", nocopy=Fal
raise ValueError("safe_eval does not allow direct evaluation of code objects.")
if '__subclasses__' in expr:
raise ValueError('expression not allowed (__subclasses__)')
raise ValueError('expression not allowed (__subclasses__)')
if globals_dict is None:
globals_dict = {}