Dale Sedivec writes: > If I use something other than a comment following the "if" statement > line, I can reproduce the original behavior in a master build from > yesterday. For example, replace "#do something" with "''" (an empty > string) or just "bar". Indeed: def fun(arg): if( args.suppliername == "x"): foo else: foo def fun(arg): if( args.suppliername == "Messingschlager" or args.suppliercodename == "MS" ): foo else: foo